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 7c0b73b commit db99073Copy full SHA for db99073
.github/workflows/haskell.yml
@@ -65,18 +65,11 @@ jobs:
65
path: ${{ steps.setup.outputs.cabal-store }}
66
key: ${{ steps.cache.outputs.cache-primary-key }}
67
68
+ - name: Build all dependencies
69
+ run: cabal build all --only-dependencies
70
- - name: Build ghc-stack-profiler-core
- run: "cabal build -v3 lib:ghc-stack-profiler-core"
71
-
72
- - name: Build ghc-stack-profiler
73
- run: "cabal build -v3 lib:ghc-stack-profiler"
74
75
- - name: Build ghc-stack-profiler-speedscope
76
- run: "cabal build -v3 lib:ghc-stack-profiler-speedscope"
77
78
- - name: Build simple exe
79
- run: "cabal build -v3 exe:simple"
+ - name: Build all
+ run: cabal build -v3 all
80
81
- name: Run tests
82
run: cabal test all
0 commit comments