From a134aba771e05c278d41f99fecc6c2c34bb68c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Mon, 6 Feb 2023 16:18:26 +0100 Subject: [PATCH] Add clippy and fmt to the CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22719c3..ef37ec4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,4 +30,7 @@ jobs: - name: Test run: | cargo test --features std,log-all - + - name: lint + run: | + cargo fmt --check + cargo clippy --all-features --all-targets -- -Dwarnings