Skip to content

Commit

Permalink
Merge pull request #464 from Chris53897/feature/add-ci-tests-for-php-83
Browse files Browse the repository at this point in the history
chore: add ci tests for php 8.3, bump github action versions
  • Loading branch information
stof authored Dec 9, 2023
2 parents 91b5f21 + 6f97f82 commit b48ab87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
- name: Validate composer.json
run: composer validate --strict --no-check-lock
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
name_suffix: ['']
stability: ['stable']
composer_flags: ['']
Expand All @@ -31,13 +31,13 @@ jobs:
name_suffix: ' (lowest deps)'
stability: 'stable'
composer_flags: '--prefer-lowest'
- php: '8.2'
- php: '8.3'
name_suffix: ' (dev deps)'
stability: 'dev'
composer_flags: ''

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: shivammathur/setup-php@v2
with:
Expand Down

0 comments on commit b48ab87

Please sign in to comment.