File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -220,18 +220,22 @@ jobs:
220
220
run : ./tools/composer install --no-ansi --no-interaction --no-progress
221
221
222
222
- name : Collect code coverage with PHPUnit
223
- run : ./phpunit --log-junit junit .xml --coverage-clover=coverage.xml
223
+ run : ./phpunit --log-junit test-results .xml --coverage-clover=code- coverage.xml
224
224
225
225
- name : Upload test results to Codecov.io
226
226
if : ${{ !cancelled() }}
227
227
uses : codecov/test-results-action@v1
228
228
with :
229
229
token : ${{ secrets.CODECOV_TOKEN }}
230
+ disable_search : true
231
+ files : ./test-results.xml
230
232
231
233
- name : Upload code coverage data to Codecov.io
232
234
uses : codecov/codecov-action@v4
233
235
with :
234
236
token : ${{ secrets.CODECOV_TOKEN }}
237
+ disable_search : true
238
+ files : ./code-coverage.xml
235
239
236
240
build-phar :
237
241
name : Build PHAR
You can’t perform that action at this time.
0 commit comments