Skip to content

Commit 43ce4a5

Browse files
Update codecov.io configuration
1 parent f3a01b2 commit 43ce4a5

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
@@ -79,15 +79,19 @@ jobs:
7979
run: ./tools/composer update --no-ansi --no-interaction --no-progress
8080

8181
- name: Run tests with PHPUnit
82-
run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
82+
run: ./vendor/bin/phpunit --log-junit test-results.xml --coverage-clover=code-coverage.xml
8383

8484
- name: Upload test results to Codecov.io
8585
if: ${{ !cancelled() }}
8686
uses: codecov/test-results-action@v1
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }}
89+
disable_search: true
90+
files: ./test-results.xml
8991

9092
- name: Upload code coverage data to Codecov.io
9193
uses: codecov/codecov-action@v4
9294
with:
9395
token: ${{ secrets.CODECOV_TOKEN }}
96+
disable_search: true
97+
files: ./code-coverage.xml

0 commit comments

Comments
 (0)