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 e867ee0 commit 71e5331Copy full SHA for 71e5331
.github/workflows/actions.yml
@@ -27,5 +27,14 @@ jobs:
27
with:
28
php-version: ${{ matrix.php-version }}
29
30
+ - name: Cache dependencies
31
+ uses: actions/cache@v4
32
+ with:
33
+ path: ~/.cache/composer
34
+ key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}
35
+ restore-keys: |
36
+ composer-${{ matrix.php-version }}-
37
+ composer-
38
+
39
- run: composer install --prefer-dist --no-progress --no-suggest
40
- run: ./test/run
0 commit comments