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 b8dd827 commit 45cee24Copy full SHA for 45cee24
.github/workflows/ci.yml
@@ -37,14 +37,13 @@ jobs:
37
bootstrap: vendor/autoload.php
38
configuration: phpunit.xml
39
php_extensions: xdebug
40
- args: tests --coverage-clover ./coverage.xml
+ args: --log-junit junit.xml
41
42
- - name: Upload to Codecov
43
- uses: codecov/codecov-action@v2
+ - name: Upload test results to Codecov
+ if: ${{ !cancelled() }}
44
+ uses: codecov/test-results-action@v1
45
with:
- token: ${{ secrets.CODE_COV_TOKEN }}
46
- files: ./coverage.xml
47
- verbose: true
+ token: ${{ secrets.CODECOV_TOKEN }}
48
49
phpstan:
50
name: PHPStan
0 commit comments