From 53e7a3b370543eb614be024bdcde599913e4fd95 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sun, 12 Jan 2020 18:15:28 -0500 Subject: [PATCH] Move the clippy/fmt checks to start; we want to fail fast --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9af7248..8f18b38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,9 @@ before_script: - 'echo $PATH' script: + - cargo clippy --all + - cargo fmt --all -- --check + - cargo test --no-run - cargo test - cargo test --release --no-run @@ -25,10 +28,6 @@ script: - cd aeron-driver-sys/ - cargo test --features "static" - - cd .. - - cargo clippy --all - - cargo fmt --all -- --check - branches: only: - master