Skip to content

Commit

Permalink
FIX haddock recompiling all the things
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrange committed Jun 26, 2023
1 parent b0a28b8 commit c945243
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-haddock.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env bash
set -e

cabal haddock --haddock-tests all
# without --disable-documentation haddock will recompile all the things
# See https://github.com/haskell/cabal/issues/8707
cabal haddock --disable-documentation --haddock-tests all

[ ! -d docs/static/haddock ] && mkdir -p docs/static/haddock

Expand Down

0 comments on commit c945243

Please sign in to comment.