From 0ccc0a156f711e7e7de3a18bf41feed824505bf3 Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Mon, 18 Mar 2019 09:54:45 +0800 Subject: [PATCH] Add targets --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b86d227..c487334 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ before_script: - rustup component add clippy || cargo install --git https://github.com/rust-lang/rust-clippy/ --force clippy script: - cargo fmt -- --check - - cargo clippy "${CARGO_FLAGS}" -- -D warnings + - cargo clippy "${CARGO_FLAGS}" --all-targets -- -D warnings - | cargo build "${CARGO_FLAGS}" && cargo test "${CARGO_FLAGS}" &&