Skip to content

Commit

Permalink
GH Actions/test: PHP 8.3 has been released
Browse files Browse the repository at this point in the history
The tests were already being run against PHP 8.3 and not _allowed to fail_.

However, for this workflow, code coverage should run against the highest PHP version. This commit makes it so.
  • Loading branch information
jrfnl committed Nov 24, 2023
1 parent c0ca608 commit 38ac41d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

strategy:
matrix:
php_version: ['5.4', '5.5', '5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.3']
php_version: ['5.4', '5.5', '5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
coverage: [false]

# Run code coverage only on high/medium/low PHP.
Expand All @@ -50,7 +50,7 @@ jobs:
coverage: true
- php_version: 7.1
coverage: true
- php_version: 8.2
- php_version: 8.3
coverage: true

name: "Lint and test: PHP ${{ matrix.php_version }}"
Expand Down

0 comments on commit 38ac41d

Please sign in to comment.