From d0a2adaa70490e21086f381faa8d9603883be450 Mon Sep 17 00:00:00 2001 From: Kowser Date: Wed, 5 Aug 2026 21:21:51 -0700 Subject: [PATCH] Remove Codecov upload step - coverage.xml still generated, no longer sent to Codecov - Unit Test results check + artifact upload cover reporting instead --- .github/workflows/pull_request.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 15056aeb..97224b14 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -91,14 +91,6 @@ jobs: fi echo "coverage.xml exists and is not empty" - - name: Upload coverage to Codecov - if: always() && steps.verify_coverage.outcome == 'success' - continue-on-error: true - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: coverage.xml - - name: Check test results if: steps.unit_tests.outcome == 'failure' || steps.bc_tests.outcome == 'failure' || steps.serdeser_tests.outcome == 'failure' || steps.agent_base_import.outcome == 'failure' run: exit 1