Skip to content

Commit

Permalink
add clippy job
Browse files Browse the repository at this point in the history
  • Loading branch information
willemolding committed Aug 12, 2024
1 parent dee4ec1 commit 65b6e74
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/rust-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 65b6e74

Please sign in to comment.