From 7bb33522e21f34b420f6228e79d18e2805280c41 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Tue, 1 May 2018 08:28:14 -0700 Subject: [PATCH] first attempt at a travis config This just does a build+test. I'll try the install scripts (for #58) in a following commit. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..84f0677 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: rust +rust: + - stable + - nightly + - 1.17 +matrix: + allow_failures: + - rust: nightly +cache: cargo +script: + - cargo build --verbose --all + - cargo test --verbose --all + - 'if [ $TRAVIS_RUST_VERSION = nightly ]; then cargo bench --verbose --all; fi'