Turn warnings into errors.

Former-commit-id: ab53aa555f431e00ec7b1a7ba23dac1608e95598
This commit is contained in:
David Himmelstrup 2019-09-17 18:47:31 +08:00
commit 6974e10a4b
4 changed files with 4 additions and 6 deletions

View file

@ -98,7 +98,7 @@ jobs:
done
;;
*)
stack $ARGS test
stack $ARGS test --pedantic
;;
esac
set +ex

View file

@ -34,7 +34,7 @@ jobs:
curl -skL https://get.haskellstack.org/stable/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C ~/.local/bin;
export PATH=$HOME/.local/bin:$PATH
stack --install-ghc $ARGS test --only-dependencies
stack $ARGS test
stack $ARGS test --pedantic
env:
OS_NAME: ${{ parameters.os }}
displayName: 'Installation ${{parameters.os}} & Test'

View file

@ -33,7 +33,7 @@ jobs:
curl -sSkL http://www.stackage.org/stack/windows-x86_64 -o /usr/bin/stack.zip
unzip -o /usr/bin/stack.zip -d /usr/bin/
stack --install-ghc $ARGS test --only-dependencies
stack $ARGS test
stack $ARGS test --pedantic
env:
OS_NAME: ${{ parameters.os }}
displayName: 'Installation ${{parameters.os}} & Test'