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 @@ -99,15 +99,19 @@ jobs:
99
99
run : php ./tools/composer update --no-ansi --no-interaction --no-progress
100
100
101
101
- name : Run tests with PHPUnit
102
- run : vendor/bin/phpunit --log-junit junit .xml --coverage-clover=coverage.xml
102
+ run : ./ vendor/bin/phpunit --log-junit test-results .xml --coverage-clover=code- coverage.xml
103
103
104
104
- name : Upload test results to Codecov.io
105
105
if : ${{ !cancelled() }}
106
106
uses : codecov/test-results-action@v1
107
107
with :
108
108
token : ${{ secrets.CODECOV_TOKEN }}
109
+ disable_search : true
110
+ files : ./test-results.xml
109
111
110
112
- name : Upload code coverage data to Codecov.io
111
113
uses : codecov/codecov-action@v4
112
114
with :
113
115
token : ${{ secrets.CODECOV_TOKEN }}
116
+ disable_search : true
117
+ files : ./code-coverage.xml
You can’t perform that action at this time.
0 commit comments