We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b17d867 commit d407935Copy full SHA for d407935
./workflows/test.yml
@@ -44,14 +44,14 @@ jobs:
44
uses: actions/cache@v2
45
with:
46
path: ${{ steps.composercache.outputs.dir }}
47
-key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.json') }}
+key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ matrix.phpunit-versions }}-${{ hashFiles('**/composer.json') }}
48
restore-keys: |
49
-${{ runner.os }}-php-${{ matrix.php-versions }}
+${{ runner.os }}-php-${{ matrix.php-versions }}-${{ matrix.phpunit-versions }}
50
51
- name: Install deps
52
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader
53
54
-- name: Unit tests 8.x
+- name: Unit tests 8.x with phpunit:${{ matrix.phpunit-versions }}
55
run: phpunit
56
if: matrix.php-versions == '8.0' || matrix.php-versions == '8.1'
57
0 commit comments