Skip to content

Update README.md

Update README.md #59

Workflow file for this run

name: Checks
on: [ pull_request, push ]
jobs:
# Code formatting.
fmt:
name: cargo-fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
# Static analyzer.
clippy:
name: cargo-clippy
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::unwrap_used