Skip to content

Commit

Permalink
feat: add clippy to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mike committed Oct 26, 2024
1 parent 93f1899 commit 9e5043f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: push
name: Clippy check

# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"

jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features

0 comments on commit 9e5043f

Please # to comment.