From 34c233207ef8c4f884a6bfad04a34f55de9c0d1a Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Thu, 25 Apr 2024 15:10:02 +0200 Subject: [PATCH] add clippy to Makefile Signed-off-by: Cyrill Leutwiler --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 5b29dc3..18ef93a 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,8 @@ bench: install-bin cargo criterion --all --features bench-evm,bench-pvm --message-format=json \ | criterion-table > crates/benchmarks/BENCHMARKS.md +clippy: + cargo clippy --all-features --workspace --tests --benches clean: cargo clean ; \