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 bf56190 commit 8141868Copy full SHA for 8141868
.github/workflows/haskell.yml
@@ -1,5 +1,4 @@
1
name: Haskell CI
2
-
3
on:
4
push:
5
branches: [ master ]
@@ -39,6 +38,9 @@ jobs:
39
38
cabal-version: 'latest'
40
cabal-update: true
41
+ - name: Check cabal file
42
+ run: cabal check
43
+
44
- name: Configure the build
45
run: |
46
cabal configure --enable-tests --enable-benchmarks --disable-documentation --flag=pedantic
@@ -73,5 +75,5 @@ jobs:
73
75
- name: Run tests
74
76
run: cabal test all --test-option=--color --test-show-details=streaming --jobs=1
77
- - name: Check cabal file
- run: cabal check
78
+ - name: Build documentation
79
+ run: cabal haddock all
0 commit comments