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.
1 parent 00fc17d commit 99863f2Copy full SHA for 99863f2
.github/workflows/php.yml
@@ -29,7 +29,7 @@ jobs:
29
php-version: '${{ matrix.php-versions }}'
30
extensions: 'mbstring, intl'
31
ini-values: 'post_max_size=256M, short_open_tag=On'
32
- coverage: xdebug
+ coverage: pcov
33
tools: 'php-cs-fixer, phpunit'
34
- name: Validate composer.json and composer.lock
35
run: composer validate
@@ -44,3 +44,7 @@ jobs:
44
- name: Install dependencies
45
if: steps.composer-cache.outputs.cache-hit != 'true'
46
run: composer install --prefer-dist --no-progress --no-suggest
47
+ - name: Setup and run PCOV
48
+ run: |
49
+ composer require pcov/clobber
50
+ vendor/bin/pcov clobber
0 commit comments