diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 1d5cf2a8..1edfcdd4 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -95,6 +95,7 @@ jobs: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: + disable_search: true files: ./coverage/lcov.info summary: diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml index 575ec579..1601da50 100644 --- a/.github/workflows/phpunit-sqlite.yml +++ b/.github/workflows/phpunit-sqlite.yml @@ -153,7 +153,8 @@ jobs: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: working-directory: apps/${{ env.APP_NAME }} - file: tests/clover.unit.xml + disable_search: true + files: tests/clover.unit.xml fail_ci_if_error: true flags: unit @@ -175,13 +176,14 @@ jobs: working-directory: apps/${{ env.APP_NAME }} run: composer run test:integration - - name: Upload Unit coverage + - name: Upload Integration coverage uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: working-directory: apps/${{ env.APP_NAME }} - file: tests/clover.unit.xml + disable_search: true + files: tests/clover.integration.xml fail_ci_if_error: true flags: integration