summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-04-23 15:49:33 +0200
committerGitHub <noreply@github.com>2019-04-23 15:49:33 +0200
commit365219e5b2e4d98021c61587b0f49e67adc5c925 (patch)
tree98dde0d502026198f437eefacd9f75bcbcfa4e0f
parent8390ed60fb5879e1329fa4065bf2117733c4120e (diff)
parenta816c326eb245dc265a7e5aad1043423bb807978 (diff)
Merge pull request #1 from matthiasbeyer/travis
Add travis.yml
-rw-r--r--.travis.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..da8fd14
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,20 @@
+language: rust
+sudo: false
+
+rust:
+ - 1.32.0
+ - 1.33.0
+ - stable
+ - beta
+ - nightly
+
+matrix:
+ allow_failures:
+ - rust: nightly
+
+cache: cargo
+
+script:
+ - cargo build --all-features --verbose -j 1
+ - cargo test --all-features --verbose -j 1
+