From 0a78d8d6452403c323927f484c527830838c2e3e Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Wed, 28 Jul 2021 16:08:02 +0100 Subject: [PATCH] trying to get codecov to work with github actions --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 019fa16..9c70a8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,7 @@ jobs: RACKET_VERSION: "${{ matrix.racket }}" RACKET_CS: "${{ matrix.racket_cs }}" COV: "${{ matrix.cov }}" + CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" steps: - uses: actions/checkout@v2 - name: Add to $PATH @@ -106,5 +107,5 @@ jobs: -X POST \ -H "Authorization: Bearer $GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/${{github.repository}}/check-runs \ + https://api.github.com/repos/${{ github.repository }}/check-runs \ -d '{"name":"build", "head_sha": "'"$BUILD_COMMIT"'", "status": "completed", "conclusion": "success" }'