Skip to content

Commit

Permalink
run phpstan during integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Athlon1600 committed Oct 25, 2023
1 parent e9dbb7f commit a9a2217
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
coverage: none

- name: Install dependencies
uses: ramsey/composer-install@v2
run: composer install --prefer-dist --no-progress

- name: Static analysis
run: |
composer require --dev phpstan/phpstan
vendor/bin/phpstan analyse src tests
- name: Run test suite
run: vendor/bin/phpunit tests/

0 comments on commit a9a2217

Please sign in to comment.