From e43c035aed462631718f3b11f0ee899fec418708 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Thu, 19 Sep 2019 22:47:07 -0400 Subject: [PATCH] Add some `before_script` necessary stuff --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d9aebc9..f2296ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,11 @@ os: cache: - cargo +before_script: + - rustup update + - rustup component add clippy + - rustup component add rustfmt + script: - cd aeron_driver-sys - cargo test @@ -20,5 +25,5 @@ script: - cd .. - cargo test - cargo test --release - - cargo fmt --all -- --check - cargo clippy --all + - cargo fmt --all -- --check