Skip to content

Commit d67ac03

Browse files
authored
Add build stack step
1 parent 28232e6 commit d67ac03

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/haskell.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ jobs:
3333
3434
- name: Cabal update
3535
run: cabal update
36-
- name: Build
36+
- name: Build using cabal
3737
run: cabal build all
3838
- name: Test
3939
run: cabal test all
40+
# stack build uses stack.yaml which actually uses ghc-8.10.7
41+
- if: matrix.ghc == '8.10.7'
42+
name: Build using stack
43+
run: stack build

0 commit comments

Comments
 (0)