mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-01-12 04:08:30 +01:00
This ensures the extra installation doesn't happen in the test step. Also add a missing --pedantic.
18 lines
500 B
YAML
18 lines
500 B
YAML
dependencies:
|
|
cache_directories:
|
|
- "~/.stack"
|
|
pre:
|
|
- wget https://github.com/commercialhaskell/stack/releases/download/v1.4.0/stack-1.4.0-linux-x86_64.tar.gz -O /tmp/stack.tar.gz
|
|
- tar xvzOf /tmp/stack.tar.gz stack-1.4.0-linux-x86_64/stack > /tmp/stack
|
|
- chmod +x /tmp/stack && sudo mv /tmp/stack /usr/bin/stack
|
|
override:
|
|
- stack setup
|
|
- stack build
|
|
--pedantic
|
|
--test --no-run-tests
|
|
--flag yesod-auth-oauth2:example
|
|
|
|
test:
|
|
override:
|
|
- stack test
|