Skip to content

Commit 71e5331

Browse files
authored
Update actions.yml
1 parent e867ee0 commit 71e5331

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/actions.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,14 @@ jobs:
2727
with:
2828
php-version: ${{ matrix.php-version }}
2929

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+
3039
- run: composer install --prefer-dist --no-progress --no-suggest
3140
- run: ./test/run

0 commit comments

Comments
 (0)