Skip to content

Commit

Permalink
Merge pull request #17 from benjaminmal/feature/add-phpstan-ci-file
Browse files Browse the repository at this point in the history
Add phpstan-ci.neon
  • Loading branch information
benjaminmal authored May 18, 2022
2 parents 6f10823 + 78ab056 commit fb1d219
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: composer validate --ansi --strict

- name: Run PHPStan
run: vendor/bin/phpstan analyse --error-format=github --no-interaction --no-progress --ansi
run: vendor/bin/phpstan analyse --configuration=phpstan-ci.neon --error-format=github --no-interaction --no-progress --ansi

- name: Run ECS
run: vendor/bin/ecs check tests ecs.php --no-interaction --no-progress-bar --ansi
5 changes: 5 additions & 0 deletions phpstan-ci.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
includes:
- phpstan.neon

parameters:
reportUnmatchedIgnoredErrors: false

0 comments on commit fb1d219

Please sign in to comment.