Created
March 26, 2020 03:25
-
-
Save alunduil/7b1805868013358f031d68b74b067367 to your computer and use it in GitHub Desktop.
.git/hooks/pre-commit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
set -x | |
if [ -e Makefile ]; then | |
make lint | |
make check | |
elif [ -e zfs-replicate.cabal ]; then | |
hlint src test | |
cabal v2-clean | |
cabal v2-configure -O0 --enable-tests --enable-benchmarks | |
cabal v2-build -j --ghc-options="-Werror" | |
cabal v2-test -j --ghc-options="-Werror" | |
cabal v2-sdist | |
cabal check | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment