Skip to content

Commit

Permalink
GH Actions: update for the release of PHP 8.3
Browse files Browse the repository at this point in the history
... which is expected later today.

* Builds against PHP 8.3 are no longer allowed to fail.
* Add _allowed to fail_ build against PHP 8.4.
  • Loading branch information
jrfnl committed Nov 23, 2023
1 parent 7722c0b commit 4e4a2cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3' ]
php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3', '8.4' ]
phpcs_version: [ 'lowest', 'dev-master' ]
extensions: [ '' ]
coverage: [false]
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

name: PHP ${{ matrix.php }} on PHPCS ${{ matrix.phpcs_version }}

continue-on-error: ${{ matrix.php == '8.3' }}
continue-on-error: ${{ matrix.php == '8.4' }}

steps:
- name: Checkout repository
Expand Down

0 comments on commit 4e4a2cf

Please sign in to comment.