Skip to content

Commit

Permalink
Update CI workflows to test on PHP 8.4 (#1409)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Mar 21, 2024
1 parent 81a161d commit 44a98de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2']
php: ['8.3']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: 8.2
php-version: 8.3

- name: Get composer cache directory
id: composer-cache
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
dependencies: ['lowest','highest','locked']
dev: ['8.3']

continue-on-error: ${{ matrix.php == matrix.dev || matrix.dependencies == 'lowest' }}
dev: ['8.4']
stable: ['8.3']

steps:
- name: Checkout Code
Expand Down Expand Up @@ -72,3 +72,4 @@ jobs:
- name: Execute PHPUnit
run: composer phpunit
continue-on-error: ${{ matrix.php == matrix.dev || matrix.dependencies == 'lowest' }}

0 comments on commit 44a98de

Please sign in to comment.