From fefb9afb5f9b6b46379b60b4394b80e19082c086 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sat, 21 Nov 2015 19:04:01 +0100 Subject: [PATCH] Run the benchmarks on nightly --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml index c81c26c..6a795e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,16 @@ rust: - beta - nightly +script: + - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then + cargo bench; + cargo build; + cargo test; + else + cargo build; + cargo test; + fi + after_success: - curl https://stainless-steel.github.io/travis/after_success.sh | bash