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 30, 2023
1 parent 060e0d0 commit dced107
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 @@ -137,3 +137,15 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --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 dced107

Please sign in to comment.