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.
2 parents d488170 + e27f121 commit 41e73a5Copy full SHA for 41e73a5
2 files changed
.github/workflows/ci.yml
@@ -6,10 +6,12 @@ on:
6
7
jobs:
8
PHPUnit:
9
- runs-on: ubuntu-20.04
+ name: PHPUnit (PHP ${{ matrix.php }})
10
+ runs-on: ubuntu-22.04
11
strategy:
12
matrix:
13
php:
14
+ - 8.2
15
- 8.1
16
- 8.0
17
- 7.4
@@ -22,10 +24,11 @@ jobs:
22
24
- 5.4
23
25
- 5.3
26
steps:
- - uses: actions/checkout@v2
27
+ - uses: actions/checkout@v3
28
- uses: shivammathur/setup-php@v2
29
with:
30
php-version: ${{ matrix.php }}
31
+ coverage: xdebug
32
- run: composer install
33
- run: vendor/bin/phpunit --coverage-text
34
if: ${{ matrix.php >= 7.3 }}
phpunit.xml.dist
@@ -17,4 +17,7 @@
<directory>./src/</directory>
18
</include>
19
</coverage>
20
+ <php>
21
+ <ini name="error_reporting" value="-1" />
+ </php>
</phpunit>
0 commit comments