Skip to content

linting: make clippy happy #62

linting: make clippy happy

linting: make clippy happy #62

Workflow file for this run

name: Clippy Check
on:
push:
branches: ["main"] # Runs Clippy on every push to the `main` branch
pull_request:
branches: ["main"] # Runs Clippy on every pull request targeting `main`
permissions:
contents: read
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Run Clippy
run: cargo clippy -- -D warnings