Skip to content

release: restore clippy with hot-path/seed/reference-table allows + b… #10

release: restore clippy with hot-path/seed/reference-table allows + b…

release: restore clippy with hot-path/seed/reference-table allows + b… #10

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: install pinned nightly (voltic core uses std::simd)
# Pinned snapshot. The unpinned `nightly` channel drifts rustfmt
# and clippy rules between runs, which has historically broken
# CI on unchanged code. Bump deliberately, not by accident.
run: |
rustup toolchain install nightly-2026-05-12 --profile minimal --component rustfmt,clippy
rustup default nightly-2026-05-12
- run: cargo fmt --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test --release
- name: quick benchmark smoke run
run: cargo run --release --bin bench -- --n 20000