From c1ad987b04691979523bb2baa32af234fd678b9c Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 13 Dec 2018 22:35:16 -0800 Subject: [PATCH] Run checks over all crates in the workspace --- ci/test-checks.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/test-checks.sh b/ci/test-checks.sh index 6b826681ca..8a09a7490b 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -12,8 +12,8 @@ _() { "$@" } -_ cargo fmt -- --check -_ cargo clippy -- --version -_ cargo clippy -- --deny=warnings +_ cargo fmt --all -- --check +_ cargo clippy --all -- --version +_ cargo clippy --all -- --deny=warnings _ ci/audit.sh