release: restore clippy with hot-path/seed/reference-table allows + b… #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |