We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af7428b commit 8a79dafCopy full SHA for 8a79daf
.github/workflows/tests.yaml
@@ -11,16 +11,20 @@ name: "Tests"
11
12
jobs:
13
phpunit:
14
- name: "PHPUnit"
+ name: "PHPUnit (${{ matrix.php-version }})"
15
16
strategy:
17
matrix:
18
+ experimental:
19
+ - false
20
php-version:
21
- "7.4"
22
- "8.0"
23
- "8.1"
24
- "8.2"
- - "8.3"
25
+ include:
26
+ - experimental: true
27
+ php-version: "8.3"
28
29
runs-on: "ubuntu-latest"
30
@@ -53,3 +57,4 @@ jobs:
53
57
54
58
- name: "Run tests"
55
59
run: "./vendor/bin/phpunit --colors=always"
60
+ continue-on-error: "${{ matrix.experimental }}"
0 commit comments