From 4856c6a008c8dfe04a4a3816d02202a7708f05ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Er=C3=A8be=20-=20Romain=20Gerard?= Date: Fri, 25 Mar 2022 13:38:54 +0100 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b699374e..3ebe3b8a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,7 +36,7 @@ jobs: sccache --show-stats echo "########## LINTER ##########" cargo fmt --all -- --check --color=always || (echo "Use cargo fmt to format your code"; exit 1) - RUSTFLAGS="--deny warnings" cargo check || (echo "Solve your warnings to continue"; exit 1) + RUSTFLAGS="--deny warnings" cargo clippy --all --all-features --lib || (echo "Solve your clippy warnings to continue"; exit 1) echo "########## START BUILD ##########" cargo build --all-features sccache --show-stats