From ace1588a94b8e24d09621d98318604593218285f Mon Sep 17 00:00:00 2001 From: Jason Williams <936006+jasonwilliams@users.noreply.github.com> Date: Mon, 1 Jul 2019 16:11:39 +0100 Subject: [PATCH] add fmt check in travis fixes #43 (#44) * testing travis * add tests back in --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 178e82459a..92c5b3892f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,10 @@ language: rust rust: - - beta \ No newline at end of file + - stable + - beta +cache: cargo +before_script: + - rustup component add rustfmt +script: + - cargo fmt --verbose -- --check + - cargo test --verbose