Skip to content

Commit 94abd09

Browse files
committed
GH Actions: minor matrix simplification
We can remove the `experimental` key in favour of checking against the PHP version in `continue-on-error`.
1 parent b10c327 commit 94abd09

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,20 @@ jobs:
2020
# Keys:
2121
# - custom_ini: Whether to run with specific custom ini settings to hit very specific
2222
# code conditions.
23-
# - experimental: Whether the build is "allowed to fail".
2423
matrix:
25-
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
24+
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
2625
custom_ini: [false]
27-
experimental: [false]
2826

2927
include:
3028
# Builds running the basic tests with different PHP ini settings.
3129
- php: '5.5'
3230
custom_ini: true
33-
experimental: false
3431
- php: '7.0'
3532
custom_ini: true
36-
experimental: false
37-
38-
# Nightly.
39-
- php: '8.1'
40-
custom_ini: false
41-
experimental: true
4233

4334
name: "PHP: ${{ matrix.php }} ${{ matrix.custom_ini && ' with custom ini settings' || '' }}"
4435

45-
continue-on-error: ${{ matrix.experimental }}
36+
continue-on-error: ${{ matrix.php == '8.1' }}
4637

4738
steps:
4839
- name: Checkout code

0 commit comments

Comments
 (0)