Skip to content

Commit 69e703f

Browse files
Merge branch '9.6' into 10.5
2 parents 68984c5 + 8e0fbdd commit 69e703f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,18 +220,22 @@ jobs:
220220
run: ./tools/composer install --no-ansi --no-interaction --no-progress
221221

222222
- name: Collect code coverage with PHPUnit
223-
run: ./phpunit --log-junit junit.xml --coverage-clover=coverage.xml
223+
run: ./phpunit --log-junit test-results.xml --coverage-clover=code-coverage.xml
224224

225225
- name: Upload test results to Codecov.io
226226
if: ${{ !cancelled() }}
227227
uses: codecov/test-results-action@v1
228228
with:
229229
token: ${{ secrets.CODECOV_TOKEN }}
230+
disable_search: true
231+
files: ./test-results.xml
230232

231233
- name: Upload code coverage data to Codecov.io
232234
uses: codecov/codecov-action@v4
233235
with:
234236
token: ${{ secrets.CODECOV_TOKEN }}
237+
disable_search: true
238+
files: ./code-coverage.xml
235239

236240
build-phar:
237241
name: Build PHAR

0 commit comments

Comments
 (0)