We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5715079 commit a5a4848Copy full SHA for a5a4848
.github/workflows/ci.yml
@@ -30,6 +30,11 @@ jobs:
30
# This action installs roswell and a few other utilities such as qlot
31
- uses: 40ants/setup-lisp@v2
32
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
37
+
38
# These steps run our tests
39
# Windows needs to be run with the msys2 shell due to how roswell is installed
40
- name: Run tests (Non-Windows)
0 commit comments