From 3772b0049f8b1298cfd7e08ae43154eb0e896c0a Mon Sep 17 00:00:00 2001 From: Jeremy Stucki Date: Mon, 5 Nov 2018 12:20:27 +0100 Subject: [PATCH] Switch travis to nightly --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4491d60..4b6f59f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,15 @@ sudo: false dist: trusty language: rust +rust: +- nightly + +install: +- rustup component add clippy-preview +- rustup component add rustfmt-preview + script: - cargo build - cargo test +- cargo clippy -- -Dwarnings +- cargo fmt --all -- --check