Skip to content

Commit cbf6896

Browse files
Update codecov.io configuration
1 parent c282fc5 commit cbf6896

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)