rename: jackal -> voltic everywhere #3
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@v4 | |
| - 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 |