Skip to content

Commit

Permalink
Merge pull request #352 from Yoast/JRF/ghactions-php-8.3-has-been-rel…
Browse files Browse the repository at this point in the history
…eased

GH Actions/test: update for the release of PHP 8.3
  • Loading branch information
jrfnl authored Nov 23, 2023
2 parents 296fbf4 + 03a75a3 commit 2c1927d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# @link https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix
#
# The matrix is set up so as not to duplicate the builds which are run for code coverage.
php_version: ['7.3', '8.0', '8.1', '8.2']
php_version: ['7.3', '8.0', '8.1', '8.2', '8.3']
cs_dependencies: ['lowest', 'stable']

include:
Expand All @@ -50,17 +50,17 @@ jobs:
# Test against dev versions of all CS dependencies with select PHP versions for early detection of issues.
- php_version: '8.0'
cs_dependencies: 'dev'
- php_version: '8.2'
- php_version: '8.3'
cs_dependencies: 'dev'

# Experimental build(s). These are allowed to fail.
# PHP nightly
- php_version: '8.3'
- php_version: '8.4'
cs_dependencies: 'dev'

name: "Test${{ matrix.cs_dependencies == 'stable' && ' + Lint' || '' }}: PHP ${{ matrix.php_version }} - CS Deps ${{ matrix.cs_dependencies }}"

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

steps:
- name: Checkout code
Expand Down

0 comments on commit 2c1927d

Please sign in to comment.