From 105fc792675c052d71f5911ac071555d1a3f747e Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 15 May 2024 21:39:34 +0900 Subject: [PATCH] ci: codecov: Fix merged coverage report path This commit updates the codecov workflow to specify the full coverage report file path under `files` because codecov-action v4 does not correctly process the `directory` parameter. Signed-off-by: Stephanos Ioannidis --- .github/workflows/codecov.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index 63812a85eb2..0e16d6b6ab8 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -222,9 +222,8 @@ jobs: if: always() uses: codecov/codecov-action@v4 with: - directory: ./coverage/reports env_vars: OS,PYTHON fail_ci_if_error: false verbose: true token: ${{ secrets.CODECOV_TOKEN }} - files: merged.xml + files: coverage/reports/merged.xml