Skip to content

Commit 2a7962d

Browse files
committed
Skip static analysis and style fix on 8.4
1 parent 3ca7393 commit 2a7962d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020

2121
- operating-system: 'ubuntu-latest'
2222
php-version: '8.4'
23+
static-analysis: none
24+
style-fix: none
2325

2426
- operating-system: 'windows-latest'
2527
php-version: '8.3'
@@ -77,8 +79,10 @@ jobs:
7779

7880
- name: Run static analysis
7981
run: vendor/bin/psalm.phar
82+
if: matrix.static-analysis != 'none'
8083

8184
- name: Run style fixer
8285
env:
8386
PHP_CS_FIXER_IGNORE_ENV: 1
8487
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
88+
if: runner.os != 'Windows' && matrix.style-fix != 'none'

0 commit comments

Comments
 (0)