Skip to content

Commit 8a79daf

Browse files
authored
Fix: Allow tests to fail on PHP 8.3 (#693)
1 parent af7428b commit 8a79daf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,20 @@ name: "Tests"
1111

1212
jobs:
1313
phpunit:
14-
name: "PHPUnit"
14+
name: "PHPUnit (${{ matrix.php-version }})"
1515

1616
strategy:
1717
matrix:
18+
experimental:
19+
- false
1820
php-version:
1921
- "7.4"
2022
- "8.0"
2123
- "8.1"
2224
- "8.2"
23-
- "8.3"
25+
include:
26+
- experimental: true
27+
php-version: "8.3"
2428

2529
runs-on: "ubuntu-latest"
2630

@@ -53,3 +57,4 @@ jobs:
5357

5458
- name: "Run tests"
5559
run: "./vendor/bin/phpunit --colors=always"
60+
continue-on-error: "${{ matrix.experimental }}"

0 commit comments

Comments
 (0)