From 3a26ae7ba0ae369e90ba959ce6a614aec2dfc474 Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Fri, 22 Dec 2023 11:00:14 +0100 Subject: [PATCH] add cargo deny to test workflow --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8fa81b8..73538e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: rustup update && rustup component add clippy rustfmt + - run: rustup update && rustup component add clippy rustfmt && cargo install cargo-deny - run: cargo fmt -- --check - run: cargo clippy --all --all-targets --all-features + - run: cargo deny check test: name: 🧪 Tests