From 277be9c802a364182fe88ecdf7fafe3a52e4c37a Mon Sep 17 00:00:00 2001 From: Leonard Lesinski <84378319+Le0X8@users.noreply.github.com> Date: Fri, 2 Aug 2024 14:28:55 +0200 Subject: [PATCH] chore: Added Clippy to cargo install --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fc9309..e32eacf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,8 @@ jobs: with: toolchain: nightly override: true - - name: Install cargo-audit - run: cargo install cargo-audit + - name: Install cargo-audit and clippy + run: cargo install cargo-audit cargo-clippy - name: Build run: cargo build --verbose - name: Run tests