From d24a6a51f229c8b3eb8f45cb00676fce3d555708 Mon Sep 17 00:00:00 2001 From: Will Gibson <8738245+WillGibson@users.noreply.github.com> Date: Sat, 18 Apr 2026 08:11:38 +0100 Subject: [PATCH] Upgrade Codecov action and configure report type Updated Codecov action to version 5 and added report type. --- .github/workflows/python-unit-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-unit-tests.yml b/.github/workflows/python-unit-tests.yml index 4f8a0f0..df4d5e5 100644 --- a/.github/workflows/python-unit-tests.yml +++ b/.github/workflows/python-unit-tests.yml @@ -40,10 +40,11 @@ jobs: run: poetry run pytest --cov --cov-report=xml --junitxml=junit.xml -o junit_family=legacy - name: Upload code coverage results to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 if: ${{ !cancelled() }} with: token: ${{ secrets.CODECOV_TOKEN }} + report_type: test_results fail_ci_if_error: true - name: Upload test analysis results to Codecov