Skip to content

Commit 2cc14a4

Browse files
committed
No longer allow PHP 8.3 to fail
1 parent 5f395ef commit 2cc14a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, 'skip ci')"
1212
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.php-versions >= '8.3' }}
14+
continue-on-error: ${{ matrix.php-versions >= '8.4' }}
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -54,4 +54,4 @@ jobs:
5454
echo "vendor/xp-framework/compiler/src/test/php" >> composer.pth
5555
5656
- name: Run test suite
57-
run: sh xp-run xp.test.Runner src/test/php
57+
run: sh xp-run xp.test.Runner -r Dots src/test/php

0 commit comments

Comments
 (0)