Skip to content

Commit

Permalink
chore: add PHP 8.4 to CI of 5.1 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Jul 26, 2024
1 parent ab04b8f commit c8c2ac8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ jobs:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
coverage: ['xdebug']
code-style: ['no']
code-analysis: ['no']
include:
- php-versions: '7.1'
code-style: 'yes'
code-analysis: 'yes'
- php-versions: '8.4'
code-style: 'no'
code-analysis: 'yes'
steps:
- name: Checkout
Expand Down Expand Up @@ -45,7 +50,7 @@ jobs:
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: Code Analysis (PHP CS-Fixer)
if: matrix.code-analysis == 'yes'
if: matrix.code-style == 'yes'
run: php vendor/bin/php-cs-fixer fix --dry-run --diff

- name: Code Analysis (PHPStan)
Expand Down

0 comments on commit c8c2ac8

Please sign in to comment.