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 abcfc45 commit 1c5ac0eCopy full SHA for 1c5ac0e
.github/workflows/ci.yml
@@ -18,6 +18,17 @@ jobs:
18
- operating-system: 'ubuntu-latest'
19
php-version: '8.3'
20
21
+ - operating-system: 'ubuntu-latest'
22
+ php-version: '8.4'
23
+ static-analysis: none
24
+ style-fix: none
25
+
26
27
+ php-version: '8.5'
28
29
30
31
32
name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }}
33
34
runs-on: ${{ matrix.operating-system }}
@@ -73,8 +84,10 @@ jobs:
73
84
74
85
- name: Run static analysis
75
86
run: vendor/bin/psalm.phar
87
+ if: matrix.static-analysis != 'none'
76
88
77
89
- name: Run style fixer
78
90
env:
79
91
PHP_CS_FIXER_IGNORE_ENV: 1
80
92
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
93
+ if: runner.os != 'Windows' && matrix.style-fix != 'none'
0 commit comments