summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-02-27 11:07:26 -0500
committerAndrew Gallant <jamslam@gmail.com>2016-02-27 11:07:26 -0500
commit9d1e619ff359b6e609b02f01e36952e603104bc6 (patch)
treea97a9dd0cbbd0978e92971805431ea4f5c018808 /.travis.yml
initial commit
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..b26fdbbd
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,12 @@
+language: rust
+rust:
+ - stable
+ - beta
+ - nightly
+script:
+ - cargo build --verbose
+ - cargo doc
+ - cargo test --verbose
+ - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
+ cargo bench --verbose;
+ fi