From aee63093bb6ee250b24aabb843b863ab0a327e7a Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Mon, 11 Nov 2024 10:48:33 +0100 Subject: [PATCH] Run Clippy on CI --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea9644b..ded557ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,8 +45,8 @@ jobs: # command: doc # args: ${{ matrix.features }} - fmt: - name: Check formatting + lint: + name: Linting runs-on: ubuntu-latest steps: @@ -67,3 +67,8 @@ jobs: command: fmt args: -- --check + - name: cargo clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --all-targets