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 be6d5ac commit c728ba8Copy full SHA for c728ba8
.github/workflows/haskell-ci.yml
@@ -37,17 +37,15 @@ jobs:
37
- uses: actions/cache/restore@v4
38
with:
39
key: ${{ matrix.ghc-version }}-${{ github.sha }}
40
- path: ~/.cabal/store
+ path: |
41
+ ~/.cabal/store
42
+ dist-newstyle
43
restore-keys: ${{ matrix.ghc-version }}-
44
- run: cabal build all --ghc-options=-fhpc
45
- run: cabal test all --ghc-options=-fhpc
46
- run: ./scripts/generate-coverage-comment.sh constrained.tix > coverage-report.md
47
- run: cat coverage-report.md
48
- run: cabal haddock all
- - uses: actions/cache/save@v4
- with:
49
- key: ${{ matrix.ghc-version }}-${{ github.sha }}
50
51
- name: Upload coverage report
52
uses: actions/upload-artifact@v4
53
0 commit comments