Skip to content

Commit

Permalink
Merge pull request #267 from GrahamCampbell/patch-1
Browse files Browse the repository at this point in the history
Test on PHP 8.3 and 8.4
  • Loading branch information
dbu authored Oct 2, 2024
2 parents 443b33d + 96270d2 commit 215a71f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']

steps:
- name: Checkout code
Expand All @@ -25,6 +25,10 @@ jobs:
tools: composer:v2
coverage: none

- name: Emulate PHP 8.3
run: composer config platform.php 8.3.999
if: matrix.php == '8.4'

- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress
Expand Down

0 comments on commit 215a71f

Please sign in to comment.