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 46cb9e5 commit fdeebc7Copy full SHA for fdeebc7
.github/workflows/ci.yml
@@ -99,15 +99,19 @@ 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 --log-junit junit.xml --coverage-clover=coverage.xml
+ run: ./vendor/bin/phpunit --log-junit test-results.xml --coverage-clover=code-coverage.xml
103
104
- 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
+ disable_search: true
110
+ files: ./test-results.xml
111
112
- name: Upload code coverage data to Codecov.io
113
uses: codecov/codecov-action@v4
114
115
116
117
+ files: ./code-coverage.xml
0 commit comments