Skip to content

Commit 174a45e

Browse files
author
Tyler King
authored
Merge pull request #117 from lucasmichot/feature/ci-php-8.1
Start testing php 8.1 with fail-fast.
2 parents 0d7d754 + 5d813c8 commit 174a45e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,23 @@ jobs:
1313
- '7.3'
1414
- '7.4'
1515
- '8.0'
16+
- '8.1'
1617
analysis: [ false ]
1718
coverage: [ 'none' ]
19+
fast-fail: [ false ]
1820
normalize: [ false ]
1921
validate: [ false ]
22+
exclude:
23+
- php: '8.0'
24+
- php: '8.1'
2025
include:
2126
- php: '8.0'
2227
analysis: true
2328
coverage: 'xdebug'
2429
normalize: true
2530
validate: true
31+
- php: '8.1'
32+
fast-fail: true
2633

2734
name: PHP ${{ matrix.php }}
2835

@@ -36,6 +43,8 @@ jobs:
3643
php: ${{ matrix.php }}
3744
coverage: ${{ matrix.coverage }}
3845
extensions: json, mbstring
46+
env:
47+
fail-fast: ${{ matrix.fast-fail }}
3948

4049
- name: Validate composer setup
4150
if: matrix.validate == true

0 commit comments

Comments
 (0)