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 @@ -78,15 +78,19 @@ jobs:
7878 run : ./tools/composer update --no-ansi --no-interaction --no-progress
7979
8080 - name : Run tests with PHPUnit
81- run : ./tools/phpunit --log-junit junit .xml --coverage-clover=coverage.xml
81+ run : ./tools/phpunit --log-junit test-results .xml --coverage-clover=code- coverage.xml
8282
8383 - name : Upload test results to Codecov.io
8484 if : ${{ !cancelled() }}
8585 uses : codecov/test-results-action@v1
8686 with :
8787 token : ${{ secrets.CODECOV_TOKEN }}
88+ disable_search : true
89+ files : ./test-results.xml
8890
8991 - name : Upload code coverage data to Codecov.io
9092 uses : codecov/codecov-action@v4
9193 with :
9294 token : ${{ secrets.CODECOV_TOKEN }}
95+ disable_search : true
96+ files : ./code-coverage.xml
You can’t perform that action at this time.
0 commit comments