From 8770fd796cbbfb48cbc92036144d7e0053c2d487 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Sun, 30 Sep 2018 07:39:52 -0400 Subject: [PATCH] add travis.yml support --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c8f1c5c3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: rust +rust: + - nightly +script: +- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --all +- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --tests --all +- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --examples --all