Skip to content

Commit 8db42c0

Browse files
committed
fix ci
1 parent bed13e5 commit 8db42c0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/github.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ on:
1515
jobs:
1616
all:
1717
runs-on: ${{ matrix.operating-system }}
18+
continue-on-error: ${{ startsWith(matrix.php-versions, '5.') || startsWith(matrix.php-versions, '7.') }}
1819
strategy:
20+
fail-fast: false
1921
matrix:
2022
operating-system: [ubuntu-latest, macos-latest]
2123
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
@@ -28,7 +30,9 @@ jobs:
2830
run: composer require phpunit/phpunit; vendor/bin/phpunit; cd tests; php run_all_tests.php -v
2931
phpunit:
3032
runs-on: ${{ matrix.operating-system }}
33+
continue-on-error: ${{ startsWith(matrix.php-versions, '5.') || startsWith(matrix.php-versions, '7.') }}
3134
strategy:
35+
fail-fast: false
3236
matrix:
3337
operating-system: [ubuntu-latest, macos-latest, windows-latest]
3438
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']

0 commit comments

Comments
 (0)