Skip to content

Commit

Permalink
ci: Add clippy check on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Nov 9, 2023
1 parent 34202fa commit a358d10
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ jobs:
with:
command: build
args: --release --all-features
clippy:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: clipy
args: --all-features
test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit a358d10

Please sign in to comment.