mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-12 00:23:08 +00:00
Turn warnings into errors.
Former-commit-id: ab53aa555f431e00ec7b1a7ba23dac1608e95598
This commit is contained in:
parent
716a42cdaf
commit
6974e10a4b
4 changed files with 4 additions and 6 deletions
|
|
@ -98,7 +98,7 @@ jobs:
|
|||
done
|
||||
;;
|
||||
*)
|
||||
stack $ARGS test
|
||||
stack $ARGS test --pedantic
|
||||
;;
|
||||
esac
|
||||
set +ex
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue