Skip to content

Commit 1bfeccb

Browse files
committed
Fixes PHP version
1 parent 809ca57 commit 1bfeccb

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ jobs:
3535
JBZOO_COMPOSER_UPDATE_FLAGS: ${{ matrix.composer_flags }}
3636
strategy:
3737
matrix:
38-
php-version: [ 7.2, 7.3, 7.4, 8.0 ]
38+
php-version: [ 7.2, 7.3, 7.4, 8.0, 8.1 ]
39+
experimental: [ false ]
3940
coverage: [ xdebug, none ]
4041
composer_flags: [ "--prefer-lowest", "" ]
42+
include:
43+
- php-version: "8.1"
44+
experimental: true
4145
steps:
4246
- name: Checkout code
4347
uses: actions/checkout@v2
@@ -52,9 +56,11 @@ jobs:
5256
tools: composer
5357

5458
- name: Build the Project
59+
continue-on-error: ${{ matrix.experimental }}
5560
run: make update --no-print-directory
5661

5762
- name: 🧪 PHPUnit Tests
63+
continue-on-error: ${{ matrix.experimental }}
5864
run: make test --no-print-directory
5965

6066
- name: Uploading coverage to coveralls
@@ -120,9 +126,11 @@ jobs:
120126
tools: composer
121127

122128
- name: Build the Project
129+
continue-on-error: ${{ matrix.experimental }}
123130
run: make update --no-print-directory
124131

125132
- name: 📝 Build Reports
133+
continue-on-error: ${{ matrix.experimental }}
126134
run: make report-all --no-print-directory
127135

128136
- name: Upload Artifacts

0 commit comments

Comments
 (0)