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 6724b28 commit 070d162Copy full SHA for 070d162
.github/workflows/tests.yml
@@ -15,7 +15,6 @@ jobs:
15
php-versions: ['8.0', '8.1', '8.2']
16
17
name: PHPUnit ${{ matrix.php-versions }}
18
-
19
steps:
20
- uses: actions/checkout@v2
21
@@ -29,7 +28,8 @@ jobs:
29
28
path: vendor
30
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
31
restore-keys: |
32
- ${{ runner.os }}-php-
+ ${{ runner.os }}-php-${{ matrix.php-versions }}
+
33
- name: Install dependencies
34
if: steps.composer-cache.outputs.cache-hit != 'true'
35
run: composer install --prefer-dist --no-progress --no-suggest
composer.json
@@ -13,7 +13,9 @@
13
"phpunit/phpunit": "^10.1"
14
},
"scripts": {
- "test": "phpunit"
+ "test": [
+ "phpunit --no-coverage"
+ ]
"autoload": {
"psr-4": {
0 commit comments