Skip to content

perf: refactor config #2

perf: refactor config

perf: refactor config #2

Workflow file for this run

name: "Check"
on:
push:
pull_request:
env:
RUSTFLAGS: "-Dwarnings"
jobs:
check:
name: "Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- run: cargo fmt --all -- --check
- run: cargo clippy --all -- -D warnings