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 9c82273 commit 00ab580Copy full SHA for 00ab580
.github/workflows/run-tests.yml
@@ -28,6 +28,18 @@ jobs:
28
run: |
29
composer config github-oauth.github.com ${{ secrets.TOKEN_GITHUB }}
30
31
+ - name: ✨ Get Composer cache directory
32
+ id: composer-cache
33
+ run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
34
+
35
+ - name: 📦 Set up Composer dependency caching
36
+ uses: actions/cache@v4
37
+ with:
38
+ path: ${{ steps.composer-cache.outputs.dir }}
39
+ key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
40
+ restore-keys: |
41
+ ${{ runner.os }}-composer-
42
43
- name: ⬇️Install Composer dependencies
44
run: composer validate --no-check-publish && composer install --prefer-dist --no-progress --no-ansi --no-interaction --optimize-autoloader
45
0 commit comments