Skip to content

Commit

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

GH Actions/test: PHP 8.3 has been released
  • Loading branch information
jrfnl committed Nov 23, 2023
2 parents 5829d2d + 71336da commit 7d462bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:

strategy:
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.3']
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.4']
coverage: [false]

# Run code coverage only on high/low PHP.
include:
- php: 5.6
coverage: true
- php: 8.2
- php: 8.3
coverage: true

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

name: "Tests: PHP ${{ matrix.php }}"

Expand All @@ -47,14 +47,14 @@ jobs:
# Install dependencies and handle caching in one go.
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
- name: Install Composer dependencies - normal
if: matrix.php != '8.3'
if: matrix.php != '8.4'
uses: "ramsey/composer-install@v2"
with:
# Bust the cache at least once a month - output format: YYYY-MM.
custom-cache-suffix: $(date -u "+%Y-%m")

- name: Install Composer dependencies - ignore PHP restrictions
if: matrix.php == '8.3'
if: matrix.php == '8.4'
uses: "ramsey/composer-install@v2"
with:
composer-options: --ignore-platform-req=php+
Expand Down

0 comments on commit 7d462bc

Please sign in to comment.