We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da5df7b commit 3d27c0bCopy full SHA for 3d27c0b
.github/workflows/phpunit.yml
@@ -21,10 +21,13 @@ jobs:
21
uses: shivammathur/setup-php@v2
22
with:
23
php-version: ${{ matrix.php-version }}
24
- coverage: none
+ coverage: xdebug
25
26
- name: Install dependencies
27
- run: composer install --no-progress --prefer-dist
+ run: composer install --no-progress --no-suggest --prefer-dist
28
29
- - name: Run PHPUnit tests/*
30
- run: vendor/bin/phpunit tests/*
+ - name: Configure Xdebug
+ run: echo "xdebug.mode=coverage" >> $GITHUB_ENV
31
+
32
+ - name: Run PHPUnit
33
+ run: vendor/bin/phpunit
0 commit comments