We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73593b commit 5f00216Copy full SHA for 5f00216
.github/workflows/ci.yml
@@ -99,9 +99,15 @@ jobs:
99
run: php ./tools/composer update --no-ansi --no-interaction --no-progress
100
101
- name: Run tests with PHPUnit
102
- run: vendor/bin/phpunit --coverage-clover=coverage.xml
+ run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
103
104
- - name: Send code coverage report to Codecov.io
+ - name: Upload test results to Codecov.io
105
+ if: ${{ !cancelled() }}
106
+ uses: codecov/test-results-action@v1
107
+ with:
108
+ token: ${{ secrets.CODECOV_TOKEN }}
109
+
110
+ - name: Upload code coverage data to Codecov.io
111
uses: codecov/codecov-action@v4
112
with:
113
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments