We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5a4848 commit 118f1e0Copy full SHA for 118f1e0
.github/workflows/ci.yml
@@ -33,7 +33,9 @@ jobs:
33
- name: Configure Coverage
34
# Only gather code coverage on Linux-SBCL
35
if: matrix.os == 'ubuntu-latest' && matrix.lisp == 'sbcl-bin'
36
- run: echo "COVERALLS=true" >> $GITHUB_ENV
+ run: |
37
+ echo "COVERALLS=true" >> $GITHUB_ENV
38
+ echo "COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }}" >> $GITHUB_ENV
39
40
# These steps run our tests
41
# Windows needs to be run with the msys2 shell due to how roswell is installed
0 commit comments