Skip to content

v1.0.0: first public release — OtmContext split API + Cheb seed + Hou… #6

v1.0.0: first public release — OtmContext split API + Cheb seed + Hou…

v1.0.0: first public release — OtmContext split API + Cheb seed + Hou… #6

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 nightly (jackal's core uses std::simd)
run: |
rustup toolchain install nightly --profile minimal --component clippy,rustfmt
rustup default nightly
- run: cargo fmt --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test
- name: quick benchmark smoke run
run: cargo run --release --bin bench -- --n 20000