From 02ccd476f75ca644fcbc7002d26fc5e44a4c10e0 Mon Sep 17 00:00:00 2001 From: Peter van Nostrand Date: Mon, 7 May 2018 07:58:06 -0400 Subject: [PATCH] Added travis ci file. --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0b8eaa9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: rust + +rust: + - stable + - beta + - nightly + +cache: cargo + +env: + global: + - RUST_BACKTRACE=1 + script: + - cargo build +