From e7a4a0cb694753db283a1fcbbae4c825ba55e188 Mon Sep 17 00:00:00 2001 From: Blake Griffith Date: Wed, 25 Sep 2024 14:47:13 -0400 Subject: [PATCH] Install clippy in ci --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15cdf4d..fcc1b1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,4 +24,4 @@ jobs: - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo build --verbose - run: cargo test --verbose - - run: cargo clippy --all-targets + - run: rustup component add clippy && cargo clippy --all-targets