Skip to content

Fix all 82 bugs from BUGS.md audit #216

Fix all 82 bugs from BUGS.md audit

Fix all 82 bugs from BUGS.md audit #216

Workflow file for this run

name: Clippy
on:
push:
branches: [master]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
run: rustup component add clippy
- uses: Swatinem/rust-cache@v2
with:
key: clippy
- name: Run clippy
run: cargo clippy --all-targets --workspace -- -D warnings