From 3855c7a492731412d67c5b1113d717c7baddb6a0 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Fri, 17 Feb 2023 21:14:42 +0100 Subject: [PATCH] Add check step using cargo clippy to ci workflow --- .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 564d3e4..f5d16b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,5 +16,8 @@ jobs: uses: dtolnay/rust-toolchain@v1 with: toolchain: stable + components: clippy + - name: Run checks + run: cargo clippy - name: Run tests - run: cargo test \ No newline at end of file + run: cargo test