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 a9f2d14 commit a390093Copy full SHA for a390093
.github/workflows/ci-php.yml
@@ -23,12 +23,11 @@ jobs:
23
uses: actions/cache@v3
24
with:
25
path: vendor
26
- key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
27
- restore-keys: |
28
- ${{ runner.os }}-php-
+ key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
29
30
- name: 🔢 Install dependencies
31
id: composer-dependencies
+ if: steps.composer-cache.outputs.cache-hit != 'true'
32
run: composer install --prefer-dist --no-progress
33
34
- name: 🗄️ Run test suite
0 commit comments