We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6a664 commit 3274f22Copy full SHA for 3274f22
.github/workflows/tests.yml
@@ -22,7 +22,7 @@ jobs:
22
with:
23
php-version: ${{ matrix.php }}
24
tools: composer:v2
25
- coverage: none
+ coverage: xdebug
26
27
- name: Install PHP dependencies
28
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
composer.json
@@ -55,7 +55,10 @@
55
"test:refactor": "rector --dry-run",
56
"test:lint": "pint --test",
57
"test:types": "phpstan analyse --ansi",
58
- "test:unit": "pest --colors=always",
+ "test:unit": [
59
+ "@putenv XDEBUG_MODE=coverage",
60
+ "pest --coverage --colors=always -v"
61
+ ],
62
"test": [
63
"@test:refactor",
64
"@test:lint",
0 commit comments