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:
9999 run : php ./tools/composer update --no-ansi --no-interaction --no-progress
100100
101101 - 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
103103
104104 - name : Upload test results to Codecov.io
105105 if : ${{ !cancelled() }}
106106 uses : codecov/test-results-action@v1
107107 with :
108108 token : ${{ secrets.CODECOV_TOKEN }}
109+ disable_search : true
110+ files : ./test-results.xml
109111
110112 - name : Upload code coverage data to Codecov.io
111113 uses : codecov/codecov-action@v4
112114 with :
113115 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