Skip to content

Commit e4c3b3f

Browse files
do static checks only on the lowest supported php version
1 parent bcc1e03 commit e4c3b3f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@ jobs:
4343
run: composer install --prefer-dist
4444

4545
- name: Coding Standard Checks
46+
if: ${{ matrix.php-versions == '7.4' }}
4647
run: PHP_CS_FIXER_IGNORE_ENV=1 ./bin/php-cs-fixer fix --dry-run -v
4748

4849
- name: Static Analysis
50+
if: ${{ matrix.php-versions == '7.4' }}
4951
run: ./bin/psalm.phar
5052

5153
- name: Test

0 commit comments

Comments
 (0)