Skip to content

Commit 3aaa9dc

Browse files
committed
Enable CI tests
1 parent 2c5731f commit 3aaa9dc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
cabal sdist -z -o .
3939
cabal get unix-*.tar.gz
4040
cd unix-*/
41-
cabal build -w /opt/ghc/bin/ghc-${{ matrix.ghc }} all
41+
cabal update
42+
cabal test -w /opt/ghc/bin/ghc-${{ matrix.ghc }} all
4243
- name: Haddock
4344
run: cabal haddock -w /opt/ghc/bin/ghc-${{ matrix.ghc }}
4445

@@ -69,7 +70,8 @@ jobs:
6970
cabal sdist -z -o .
7071
cabal get unix-*.tar.gz
7172
cd unix-*/
72-
cabal build all
73+
cabal update
74+
cabal test all --test-show-details=direct
7375
- name: Haddock
7476
run: cabal haddock
7577

@@ -90,4 +92,5 @@ jobs:
9092
cabal sdist -z -o .
9193
cabal get unix-*.tar.gz
9294
cd unix-*/
93-
cabal build all
95+
cabal update
96+
cabal test all --test-show-details=direct

0 commit comments

Comments
 (0)