Added .travis.yml

This commit is contained in:
Yuriy Glukhov 2018-03-30 17:10:33 +03:00
parent c8fa9eac7e
commit 1389fcac55
1 changed files with 8 additions and 0 deletions

8
.travis.yml Normal file
View File

@ -0,0 +1,8 @@
sudo: required
services:
- docker
before_install:
- docker pull statusteam/nim-base
script:
- docker run statusteam/nim-base nim --version
- docker run -v "$(pwd):/project" -w /project statusteam/nim-base sh -c "nimble install -dy && nimble test"