Add circle.yml for CircleCI test.
This commit is contained in:
parent
0fd110b14e
commit
74546a9454
1 changed files with 13 additions and 0 deletions
13
circle.yml
Normal file
13
circle.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
dependencies:
|
||||
cache_directories:
|
||||
- "~/.stack"
|
||||
pre:
|
||||
- wget -q -O- https://s3.amazonaws.com/download.fpcomplete.com/ubuntu/fpco.key | sudo apt-key add -
|
||||
- echo 'deb http://download.fpcomplete.com/ubuntu/precise stable main'|sudo tee /etc/apt/sources.list.d/fpco.list
|
||||
- sudo apt-get update && sudo apt-get install stack -y
|
||||
override:
|
||||
- stack setup
|
||||
- stack build --test --only-dependencies
|
||||
test:
|
||||
override:
|
||||
- stack test
|
Loading…
Add table
Reference in a new issue