Skip to content

Fix clippy warnings (#80) #140

Fix clippy warnings (#80)

Fix clippy warnings (#80) #140

Workflow file for this run

name: Rust Nightly
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt -- --check
- name: Catch common mistakes
run: cargo clippy