Skip to content

Commit 55a6bd0

Browse files
committed
Test on PHP 8.4
1 parent c50a3b1 commit 55a6bd0

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'
@@ -74,11 +80,13 @@ jobs:
7480

7581
- name: Run static analysis
7682
run: vendor/bin/psalm.phar
83+
if: matrix.static-analysis != 'none'
7784

7885
- name: Run style fixer
7986
env:
8087
PHP_CS_FIXER_IGNORE_ENV: 1
8188
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
89+
if: runner.os != 'Windows' && matrix.style-fix != 'none'
8290

8391
- name: Install composer-require-checker
8492
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)