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 3429906 commit 23036cdCopy full SHA for 23036cd
1 file changed
.github/workflows/ci.yml
@@ -79,15 +79,19 @@ jobs:
79
run: ./tools/composer update --no-ansi --no-interaction --no-progress
80
81
- name: Run tests with PHPUnit
82
- 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
83
84
- name: Upload test results to Codecov.io
85
if: ${{ !cancelled() }}
86
uses: codecov/test-results-action@v1
87
with:
88
token: ${{ secrets.CODECOV_TOKEN }}
89
+ disable_search: true
90
+ files: ./test-results.xml
91
92
- name: Upload code coverage data to Codecov.io
93
uses: codecov/codecov-action@v4
94
95
96
97
+ files: ./code-coverage.xml
0 commit comments