Skip to content

fix(derive): forgot one instance (#61) #132

fix(derive): forgot one instance (#61)

fix(derive): forgot one instance (#61) #132

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: rustup toolchain install nightly-2025-09-21 --component rustfmt
- run: cargo +nightly-2025-09-21 fmt --all --check
clippy:
name: clippy
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.89.0
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo +1.89.0 clippy --examples --tests --benches --all-features --locked
env:
RUSTFLAGS: -D warnings