From fc884525be1c0b232e28b31ec027c6c770552da9 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sat, 23 May 2020 15:23:53 +0200 Subject: [PATCH] fix clippy in CI --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ab9f42cc..ec86e572 100644 --- a/Makefile +++ b/Makefile @@ -25,16 +25,19 @@ release-linux-musl: test: cargo test --workspace -check: +fmt: cargo fmt -- --check + +clippy: cargo clean -p gitui -p asyncgit -p scopetime cargo clippy --all-features -check-pedantic: - cargo fmt -- --check +clippy-pedantic: cargo clean -p gitui -p asyncgit -p scopetime cargo clippy --all-features -- -W clippy::pedantic +check: fmt clippy + install: cargo install --path "."