Skip to content

Commit

Permalink
Only allow PHP >= 8.4 to fail
Browse files Browse the repository at this point in the history
PHP 8.3 has been released: https://externals.io/message/121782
  • Loading branch information
thekid committed Dec 2, 2023
1 parent 07f1bc7 commit 5f6c3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.php-versions >= '8.3' }}
continue-on-error: ${{ matrix.php-versions >= '8.4' }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 5f6c3af

Please sign in to comment.