diff --git a/.github/workflows/rust-checks.yml b/.github/workflows/rust-checks.yml index 58b07c5..1b5fb2d 100644 --- a/.github/workflows/rust-checks.yml +++ b/.github/workflows/rust-checks.yml @@ -21,3 +21,19 @@ jobs: with: command: fmt args: --all -- --check + + clippy: + runs-on: ubuntu-24.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install Rust toolchain + uses: ./.github/actions/install-rust-toolchain + with: + components: clippy + + - uses: actions-rs/cargo@v1 + with: + command: clippy + args: --all --all-targets -- -D warnings