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 Oct 18, 2023
1 parent 22a0c56 commit 9c8bf2e
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
Expand Up @@ -45,7 +45,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
Expand Up @@ -21,7 +21,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 public 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 9c8bf2e

Please sign in to comment.