Skip to content

Commit 4621801

Browse files
committed
Update GitHub Actions
1 parent f4cf4f5 commit 4621801

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ on:
99
jobs:
1010
test:
1111
runs-on: ${{ matrix.os }}
12+
13+
env:
14+
latest_php: 8.3
15+
1216
strategy:
1317
fail-fast: false
1418
matrix:
1519
os: [ ubuntu-latest ]
1620
php: [
1721
'5.3', '5.4', '5.5', '5.6',
1822
'7.0', '7.1', '7.2', '7.3', '7.4',
19-
'8.0', '8.1', '8.2', '8.3'
23+
'8.0', '8.1', '8.2', '8.3', '8.4',
2024
]
2125

2226
name: PHP ${{ matrix.php }}
@@ -36,8 +40,7 @@ jobs:
3640
run: composer install --quiet --no-ansi --prefer-dist --no-progress --no-interaction
3741

3842
- name: Migrate phpunit XML configuration
39-
continue-on-error: true
40-
run: vendor/bin/phpunit --migrate-configuration
43+
run: vendor/bin/phpunit --migrate-configuration || true
4144

4245
- name: Run test suite
4346
run: vendor/bin/phpunit --coverage-clover=coverage.xml
@@ -48,3 +51,4 @@ jobs:
4851
token: ${{ secrets.CODECOV_TOKEN }}
4952
files: ./coverage.xml
5053
fail_ci_if_error: false
54+
if: matrix.php == env.latest_php

0 commit comments

Comments
 (0)