Skip to content

Commit

Permalink
Change phpstan command in gha build
Browse files Browse the repository at this point in the history
  • Loading branch information
liszkapawel authored Aug 11, 2023
1 parent a3dde21 commit 8b1fc3b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/coding_standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,13 @@ jobs:
name: Install PHP dependencies
run: composer install --no-interaction

- name: Run ECS
-
name: Run ECS
run: vendor/bin/ecs

-
name: Run PHPStan in /src directory
run: ./vendor/bin/phpstan analyze --configuration=./phpstan.neon src --level=8

-
name: Run PHPStan in /test directory
run: ./vendor/bin/phpstan analyze --configuration=./phpstan.neon tests --level=5
name: Run PHPStan
run: vendor/bin/phpstan analyse -c phpstan.neon -l 8 src/

-
name: Failed build Slack notification
Expand Down

0 comments on commit 8b1fc3b

Please sign in to comment.