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 967dac8 commit 8556eb8Copy full SHA for 8556eb8
.github/workflows/ci.yml
@@ -9,6 +9,7 @@ jobs:
9
name: PHPUnit (PHP ${{ matrix.php }})
10
runs-on: ubuntu-24.04
11
strategy:
12
+ fail-fast: false
13
matrix:
14
php:
15
- 8.4
@@ -25,7 +26,7 @@ jobs:
25
26
- uses: shivammathur/setup-php@v2
27
with:
28
php-version: ${{ matrix.php }}
- coverage: xdebug
29
+ coverage: ${{ matrix.php < 8.0 && 'xdebug' || 'pcov' }}
30
ini-file: development
31
- run: composer install
32
- run: vendor/bin/phpunit --coverage-text
@@ -42,7 +43,7 @@ jobs:
42
43
44
45
php-version: 8.2
46
+ coverage: pcov
47
48
49
0 commit comments