summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2019-04-23 15:13:30 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2019-04-23 15:13:30 +0200
commite13ef5e5da8a34373fe4f9cdfb2be7b2ec37f7dc (patch)
treeeacf109790fbe1ec879f1789f7ba3ce01e11a6d7 /.travis.yml
parent8390ed60fb5879e1329fa4065bf2117733c4120e (diff)
Add travis.yml
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
+