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