We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca7393 commit 2a7962dCopy full SHA for 2a7962d
1 file changed
.github/workflows/ci.yml
@@ -20,6 +20,8 @@ jobs:
20
21
- operating-system: 'ubuntu-latest'
22
php-version: '8.4'
23
+ static-analysis: none
24
+ style-fix: none
25
26
- operating-system: 'windows-latest'
27
php-version: '8.3'
@@ -77,8 +79,10 @@ jobs:
77
79
78
80
- name: Run static analysis
81
run: vendor/bin/psalm.phar
82
+ if: matrix.static-analysis != 'none'
83
84
- name: Run style fixer
85
env:
86
PHP_CS_FIXER_IGNORE_ENV: 1
87
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
88
+ if: runner.os != 'Windows' && matrix.style-fix != 'none'
0 commit comments