Skip to content

Commit

Permalink
CI: build through cabal on the latest GHC
Browse files Browse the repository at this point in the history
  • Loading branch information
rudymatela committed Jul 6, 2023
1 parent 7ff228a commit 9e5fd48
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,17 @@ jobs:

- run: make install-dependencies

- run: make
- run: make test
- run: make haddock
# 2023-07: some projects were failing with missing base for GHC 9.6.
# Here we compile through cabal only provisionally.
# - run: make
# - run: make test
# - run: make haddock
- run: make test-sdist
- run: make test-via-cabal
#- run: make test-via-cabal
- run: cabal configure --enable-tests --enable-benchmarks --ghc-options="-O0"
- run: cabal build
- run: cabal test
- run: cabal haddock


test-with-ghc:
Expand Down

0 comments on commit 9e5fd48

Please sign in to comment.