We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c1d7cf commit 4ef5507Copy full SHA for 4ef5507
.github/workflows/haskell-ci.yml
@@ -26,6 +26,9 @@ jobs:
26
matrix:
27
ghc-version: ["9.12", "9.10", "9.8", "9.6"]
28
ref: ["${{ github.head_ref }}"]
29
+ # This gives us one run for `master` with ghc version 9.12.
30
+ # We use this run to give us "up to date" coverage data that
31
+ # we can compare to.
32
include:
33
- ghc-version: "9.12"
34
ref: master
@@ -62,7 +65,9 @@ jobs:
62
65
- run: cabal test all
63
66
- run: cabal haddock all
64
67
- # To get the right version of `generate-coverage-comment.sh`
68
+ # To get the right version of `generate-coverage-comment.sh`. I.e. the
69
+ # one in this PR. This is important in order to get the same
70
+ # coverage-counting logic on the PR as on master.
71
- uses: actions/checkout@v4
72
with:
73
ref: ${{ github.head_ref }}
0 commit comments