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 41ee53e commit f19647fCopy full SHA for f19647f
.github/workflows/main.yml
@@ -55,10 +55,9 @@ jobs:
55
composer install --no-interaction --prefer-dist --no-progress
56
57
- name: Run unit tests
58
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --testsuite unit
59
-
60
- - name: Checkout coverage report
61
- run: php vendor/bin/coverage-check coverage/clover.xml ${{ env.MINIMUM_COVERAGE_PERCENTAGE }}
+ run: |
+ XDEBUG_MODE=coverage php vendor/bin/phpunit --testsuite unit
+ php vendor/bin/coverage-check coverage/clover.xml ${{ env.MINIMUM_COVERAGE_PERCENTAGE }}
62
63
- name: Run mutation tests
64
run: XDEBUG_MODE=coverage php vendor/bin/infection --show-mutations --min-msi=${{ env.MINIMUM_MSI_PERCENTAGE }} --threads=4
0 commit comments