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