Skip to content

Commit fdeebc7

Browse files
Update codecov.io configuration
1 parent 46cb9e5 commit fdeebc7

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
@@ -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

0 commit comments

Comments
 (0)