Skip to content

Commit df0ff82

Browse files
Update codecov.io configuration
1 parent 8bfea71 commit df0ff82

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

8282
- name: Run tests with PHPUnit
83-
run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
83+
run: ./phpunit --log-junit test-results.xml --coverage-clover=code-coverage.xml
8484

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

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

0 commit comments

Comments
 (0)