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.
  • Loading branch information
jrfnl authored and grogy committed Dec 29, 2023
1 parent 7ce7891 commit 539292f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
test:
name: Run tests on PHP ${{ matrix.php }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.php == '8.3' }}
continue-on-error: ${{ matrix.php == '8.4' }}
needs:
- bundle

Expand All @@ -113,6 +113,7 @@ jobs:
- '8.1'
- '8.2'
- '8.3'
- '8.4'

steps:
- name: Checkout code
Expand All @@ -131,14 +132,14 @@ jobs:
run: composer remove --dev php-parallel-lint/php-code-style --no-update --no-interaction

- name: Install Composer dependencies
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 (PHP 8.3, ignore PHP reqs)"
if: ${{ matrix.php == '8.3' }}
- name: "Install Composer dependencies (PHP 8.4, ignore PHP reqs)"
if: ${{ matrix.php == '8.4' }}
uses: ramsey/composer-install@v2
with:
composer-options: --ignore-platform-req=php
Expand Down

0 comments on commit 539292f

Please sign in to comment.