We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c5bf7f + 9b94415 commit c3462d8Copy full SHA for c3462d8
.github/workflows/tests.yml
@@ -41,4 +41,4 @@ jobs:
41
run: composer install --prefer-dist --no-progress
42
43
- name: Run test suite
44
- run: composer run-script test
+ run: composer run-script test & composer run-script test:type
composer.json
@@ -30,7 +30,8 @@
30
}
31
},
32
"scripts": {
33
- "test": "./vendor/bin/pest"
+ "test": "vendor/bin/pest",
34
+ "test:type": "vendor/bin/phpstan analyse src tests --ansi --memory-limit=-1 --level=5"
35
36
"config": {
37
"sort-packages": true,
@@ -39,6 +40,7 @@
39
40
"require-dev": {
- "pestphp/pest": "^1.22"
+ "pestphp/pest": "^1.22",
+ "phpstan/phpstan": "^1.10"
45
46
0 commit comments