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 7074f5d commit b8a7040Copy full SHA for b8a7040
.github/workflows/tests.yml
@@ -14,7 +14,18 @@ jobs:
14
15
steps:
16
- uses: actions/checkout@v2
17
- - uses: php-actions/composer@v5
+ - name: Cache Composer packages
18
+ id: composer-cache
19
+ uses: actions/cache@v2
20
+ with:
21
+ path: vendor
22
+ key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
23
+ restore-keys: |
24
+ ${{ runner.os }}-php-
25
+ - name: Composer install
26
+ uses: php-actions/composer@v6
27
28
+ php_version: 7.4
29
30
- name: PHPStan Static Analysis
31
uses: php-actions/phpstan@v3
0 commit comments