Skip to content

Commit

Permalink
add clippy linting CI target
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleades committed Nov 29, 2023
1 parent eb5b768 commit 927b597
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,15 @@ jobs:
with:
command: fmt
args: --all -- --check --unstable-features --error-on-unformatted

clippy:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- uses: actions-rs-plus/clippy-check@v2
with:
args: --all --all-targets

0 comments on commit 927b597

Please sign in to comment.