We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 594e516 commit 47b4032Copy full SHA for 47b4032
.github/workflows/ci.yml
@@ -43,6 +43,18 @@ jobs:
43
PATTERNS: |
44
pkg/**/*.php
45
46
+ - name: Get Composer Cache Directory
47
+ id: composer-cache
48
+ run: |
49
+ echo "::set-output name=dir::$(composer config cache-files-dir)"
50
+
51
+ - uses: actions/cache@v2
52
+ with:
53
+ path: ${{ steps.composer-cache.outputs.dir }}
54
+ key: composer-cs-check-${{ hashFiles('**/composer.json') }}
55
+ restore-keys: |
56
+ composer-cs-check-
57
58
- uses: shivammathur/setup-php@v2
59
with:
60
php-version: '7.4'
@@ -52,7 +64,7 @@ jobs:
64
65
- run: php ./bin/fix-symfony-version.php "5.2.*"
66
- - uses: "ramsey/composer-install@v1"
67
+ - run: composer update --no-progress
68
69
- run: sed -i 's/525568/16777471/' vendor/kwn/php-rdkafka-stubs/stubs/constants.php
70
0 commit comments