From 78e8615e149c4f06f2ecd36d2eb15edeb2ed422c Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 8 Feb 2026 15:43:41 -0500 Subject: [PATCH] ci(deps): use codecov-action for test results --- .github/workflows/ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c03756..406b4d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -282,22 +282,24 @@ jobs: - name: Debug coverage file run: cat _coverage/coverage.xml - - name: Upload test results to Codecov - uses: codecov/test-results-action@v1 + - name: Upload test coverage + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: disable_search: true fail_ci_if_error: true - files: ./_coverage/tests/test_results.xml + files: ./_coverage/coverage.xml + report_type: coverage flags: ${{ matrix.flag }} token: ${{ secrets.CODECOV_TOKEN }} verbose: true - - name: Upload coverage - uses: codecov/codecov-action@v5 + - name: Upload test results + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: disable_search: true fail_ci_if_error: true - files: ./_coverage/coverage.xml + files: ./_coverage/tests/test_results.xml + report_type: test_results flags: ${{ matrix.flag }} token: ${{ secrets.CODECOV_TOKEN }} verbose: true