Skip to content

Commit

Permalink
GH Actions/lint: stop linting against PHP 8.2
Browse files Browse the repository at this point in the history
The lint workflow in principle only lints against the high/low PHP version for each major (+ nightly) as the tests already run against all PHP versions anyway.

What with the release of PHP 8.3, the linting against PHP 8.2 can now be removed.
  • Loading branch information
jrfnl committed Mar 25, 2024
1 parent bcf1ac7 commit edb3f65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

strategy:
matrix:
# Lint against the high/low versions of each PHP major.
php: ['5.6', '7.0', '7.4', '8.0', '8.2', '8.3', '8.4']
# Lint against the high/low versions of each PHP major + nightly.
php: ['5.6', '7.0', '7.4', '8.0', '8.3', '8.4']

name: "Lint: PHP ${{ matrix.php }}"
continue-on-error: ${{ matrix.php == '8.4' }}
Expand Down

0 comments on commit edb3f65

Please sign in to comment.