Skip to content

Commit eff146d

Browse files
committed
run phpstan during integration tests
1 parent cea1b6a commit eff146d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,10 @@ jobs:
3131
- name: Install dependencies
3232
run: composer install --prefer-dist --no-progress
3333

34+
- name: Static analysis
35+
run: |
36+
composer require --dev phpstan/phpstan
37+
vendor/bin/phpstan analyse src
38+
3439
- name: Run PHPUnit
35-
run: vendor/bin/phpunit tests
40+
run: vendor/bin/phpunit --verbose --colors=always tests

0 commit comments

Comments
 (0)