From b357991caf1cf0f6a2964e4192869cb4156ba6f9 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Tue, 22 Mar 2016 04:47:02 -0700 Subject: [PATCH] travis: test beta and nightly A suggestion from https://docs.travis-ci.com/user/languages/rust The motivation here is simply that we get alerted ahead of time if an upcoming release of Rust would break our tests for whatever reason. In such a case we'd like to be alerted of it ahead of time. --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.travis.yml b/.travis.yml index d7e3570bb..3d1c012ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,10 @@ script: - "./bin/fetch-configlet" - "./bin/configlet ." sudo: false +rust: + - stable + - beta + - nightly +matrix: + allow_failures: + - rust: nightly