diff options
author | 2017-05-04 21:31:37 +0200 | |
---|---|---|
committer | 2017-05-04 21:31:37 +0200 | |
commit | f15987b34a554ee7db1df643cebe8be9e0317e38 (patch) | |
tree | 9892ae25e9020a11b7f42f8583df05f610b0db40 /.travis.yml | |
download | circular-f15987b34a554ee7db1df643cebe8be9e0317e38.tar.gz circular-f15987b34a554ee7db1df643cebe8be9e0317e38.tar.bz2 circular-f15987b34a554ee7db1df643cebe8be9e0317e38.zip |
initial commit
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2f1177d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +language: rust + +cache: cargo + +rust: + - nightly + - beta + - stable + + +before_script: + - cargo install cargo-travis --force + - export PATH=$HOME/.cargo/bin:$PATH; + +script: + - cargo build + - cargo test + +after_success: + - cargo coveralls + + +dist: trusty +#sudo: false + |