Skip to content

Commit 7b52598

Browse files
committed
Test on PHP 8.4
1 parent 89cc810 commit 7b52598

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
- operating-system: 'ubuntu-latest'
1919
php-version: '8.3'
2020

21+
- operating-system: 'ubuntu-latest'
22+
php-version: '8.4'
23+
static-analysis: none
24+
style-fix: none
25+
composer-require-checker-version: none
26+
2127
- operating-system: 'windows-latest'
2228
php-version: '8.3'
2329
job-description: 'on Windows'
@@ -70,11 +76,13 @@ jobs:
7076

7177
- name: Run static analysis
7278
run: vendor/bin/psalm.phar
79+
if: matrix.static-analysis != 'none'
7380

7481
- name: Run style fixer
7582
env:
7683
PHP_CS_FIXER_IGNORE_ENV: 1
7784
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
85+
if: runner.os != 'Windows' && matrix.style-fix != 'none'
7886

7987
- name: Install composer-require-checker
8088
run: php -r 'file_put_contents("composer-require-checker.phar", file_get_contents("https://github.com/maglnet/ComposerRequireChecker/releases/download/3.7.0/composer-require-checker.phar"));'

0 commit comments

Comments
 (0)