commit 4b56db605129dd73a6b5a106e0004a5b7141a960
parent 1642cdc088aef9fd9acb1e523f224835590c0710
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date: Wed, 28 Jul 2021 16:19:32 +0100
trying to get codecov to work with github actions
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -57,7 +57,8 @@ jobs:
RACKET_VERSION: "${{ matrix.racket }}"
RACKET_CS: "${{ matrix.racket_cs }}"
COV: "${{ matrix.cov }}"
- CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
+ #CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
+ CODECOV_TOKEN: 88755518-12cc-4dee-a0f2-bdc978bc1d83
steps:
- uses: actions/checkout@v2
- name: Add to $PATH
@@ -89,6 +90,6 @@ jobs:
- name: Check documentation coverage
run: if $COV; then raco doc-coverage "$(basename "$GITHUB_WORKSPACE")"; fi
- name: Check code coverage
- run: if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
+ run: echo $CODECOV_TOKEN; if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
# TODO: add an option to cover to run the "outer" module too, not just the submodules.
# TODO: deploy the coverage info.