Skip to content

Commit f733c80

Browse files
committed
Fix windows runners
1 parent 31e4073 commit f733c80

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,13 @@ jobs:
4949
run: |
5050
set -eux
5151
[ -e ~/.ghcup/env ] && . ~/.ghcup/env
52+
ghcup install ghc --set ${{ matrix.ghc }}
5253
echo ${{ matrix.ghc }}
5354
echo $(ghc --numeric-version)
5455
cabal update
55-
cabal build --enable-tests
56-
cabal test --test-show-details=direct
56+
cabal configure --enable-tests --test-show-details=direct
57+
cabal build
58+
cabal test
5759
cabal haddock
5860
cabal check
5961
cabal sdist

0 commit comments

Comments
 (0)