Browse Source

Add clippy to the CI

pull/136/head
Rodolphe Bréard 3 months ago
parent
commit
1d8ecf41d3
  1. 9
      .github/workflows/ci.yml

9
.github/workflows/ci.yml

@ -31,6 +31,15 @@ jobs:
run: rustup update stable
- name: Run cargo fmt
run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable
- name: Run clippy
run: cargo +stable clippy --all-features
cargo-deny:
name: Check dependencies
runs-on: ubuntu-latest

Loading…
Cancel
Save