We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15c2b9 commit 5ede623Copy full SHA for 5ede623
1 file changed
.github/workflows/test.yaml
@@ -10,17 +10,22 @@ on:
10
jobs:
11
run:
12
runs-on: ubuntu-latest
13
+ continue-on-error: ${{ matrix.experimental }}
14
strategy:
15
fail-fast: false
16
matrix:
17
php-versions:
- - 7.2
18
- 7.3
19
- 7.4
20
- 8.1
21
- 8.2
22
- 8.3
23
- 8.4
24
+ experimental: [false]
25
+ include:
26
+ - php: '7.2'
27
+ experimental: true
28
+
29
name: PHP ${{ matrix.php-versions }} test
30
31
steps:
0 commit comments