Skip to content

Commit

Permalink
ci: Add clippy to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
KokaKiwi committed Oct 21, 2024
1 parent 37a126b commit 09c4c16
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,17 @@ jobs:
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- uses: actions-rust-lang/rustfmt@v1
- uses: wearerequired/lint-action@v2
with:
rustfmt: true
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
- uses: wearerequired/lint-action@v2
with:
clippy: true

0 comments on commit 09c4c16

Please sign in to comment.