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 @@ -79,15 +79,19 @@ jobs:
79
79
run : ./tools/composer update --no-ansi --no-interaction --no-progress
80
80
81
81
- name : Run tests with PHPUnit
82
- run : vendor/bin/phpunit --log-junit junit .xml --coverage-clover=coverage.xml
82
+ run : ./ vendor/bin/phpunit --log-junit test-results .xml --coverage-clover=code- coverage.xml
83
83
84
84
- name : Upload test results to Codecov.io
85
85
if : ${{ !cancelled() }}
86
86
uses : codecov/test-results-action@v1
87
87
with :
88
88
token : ${{ secrets.CODECOV_TOKEN }}
89
+ disable_search : true
90
+ files : ./test-results.xml
89
91
90
92
- name : Upload code coverage data to Codecov.io
91
93
uses : codecov/codecov-action@v4
92
94
with :
93
95
token : ${{ secrets.CODECOV_TOKEN }}
96
+ disable_search : true
97
+ files : ./code-coverage.xml
You can’t perform that action at this time.
0 commit comments