Skip to content

Commit 7074091

Browse files
committed
ci: add PHP 8.4 testing
1 parent 3e55ecc commit 7074091

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
php: ['8.2', '8.3']
11+
php: ['8.2', '8.3', '8.4']
1212
dependency-version: [lowest, highest]
1313

1414
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
@@ -38,4 +38,4 @@ jobs:
3838
composer-options: "--prefer-dist"
3939

4040
- name: Run Tests
41-
run: vendor/bin/pest
41+
run: vendor/bin/pest --display-deprecation ${{ matrix.dependency-version == 'highest' && '--fail-on-deprecation' || '' }}

phpunit.xml.dist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
colors="true"
6+
stopOnError="false"
7+
stopOnFailure="false"
68
>
79
<testsuites>
810
<testsuite name="Tests">

0 commit comments

Comments
 (0)