16 lines
298 B
YAML
16 lines
298 B
YAML
# cache:
|
|
# - '%AppData%\stack'
|
|
|
|
install:
|
|
- curl -sS -ostack.zip -L https://get.haskellstack.org/stable/windows-i386.zip
|
|
- 7z x stack.zip stack.exe
|
|
- stack setup > nul
|
|
|
|
build: off
|
|
|
|
build_script:
|
|
- stack --no-terminal test --no-run-tests
|
|
|
|
test_script:
|
|
- stack --jobs 1 --no-terminal test
|