From e39625f8bfa9fe7f982533fe1fa4fc01583ac59c Mon Sep 17 00:00:00 2001 From: Mattias Eriksson Date: Fri, 1 Nov 2024 08:05:03 +0100 Subject: [PATCH] Try to fix code coverage --- .github/workflows/codecov.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index cd740d7..9ebaa1a 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -21,7 +21,9 @@ jobs: run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: - token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: lcov.info - fail_ci_if_error: true \ No newline at end of file + fail_ci_if_error: true + #token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos