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 d9f16d2 commit 24505a1Copy full SHA for 24505a1
.github/workflows/ci.yml
@@ -7,10 +7,11 @@ on:
7
jobs:
8
PHPUnit:
9
name: PHPUnit (PHP ${{ matrix.php }})
10
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
11
strategy:
12
matrix:
13
php:
14
+ - 8.4
15
- 8.3
16
- 8.2
17
- 8.1
@@ -29,7 +30,7 @@ jobs:
29
30
- uses: shivammathur/setup-php@v2
31
with:
32
php-version: ${{ matrix.php }}
- coverage: xdebug
33
+ coverage: ${{ matrix.php < 8.0 && 'xdebug' || 'pcov' }}
34
ini-file: development
35
- run: composer install
36
- run: docker pull busybox:latest
0 commit comments