From e073704a6b298c706505c8f7bfe6d852f770a2de Mon Sep 17 00:00:00 2001 From: Amrasil Date: Wed, 26 Mar 2025 22:55:21 +0100 Subject: [PATCH] change(feat/OPS-31): added token to ci.yml and ensurance that coverage.xml is created --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6a3025..1f6a6cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,11 @@ jobs: - name: Run tests with coverage run: poetry run coverage run -m pytest + - name: Generate Coverage Report # Ensure creation of coverage.xml + run: poetry run coverage xml + - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: - token: ${{ secrets.CODECOV_TOKEN }} + token: ${{RELEASE_PLEASE_TOKEN}} file: ./coverage.xml