summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..e9f17b0
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,27 @@
+language: rust
+
+rust:
+ - 1.25.0
+ - 1.26.0
+ - 1.27.0
+ - 1.28.0
+ - 1.29.0
+ - 1.30.0
+ - 1.31.0
+ - 1.31.1
+ - 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
+