Skip to content

Fix clippy lints

Fix clippy lints #140

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check
- run: cargo clippy --workspace --all-features -- -D warnings
- run: cargo test --workspace --all-features