Skip to content

Commit

Permalink
Run phpstan without --xdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
natanfelles committed Apr 20, 2023
1 parent 489bab9 commit 3c9f0a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: PHPStan
run:
vendor/bin/phpstan analyse --xdebug -vvv
vendor/bin/phpstan analyse -vvv

- name: PHPUnit
run: vendor/bin/phpunit --verbose
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test:php:
- composer normalize --dry-run --indent-size=4 --indent-style=space
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
- vendor/bin/phpmd src xml phpmd.xml
- vendor/bin/phpstan analyse --xdebug -vvv
- vendor/bin/phpstan analyse -vvv
- vendor/bin/phpunit --colors=never
- phpdoc
artifacts:
Expand Down

0 comments on commit 3c9f0a0

Please sign in to comment.