Skip to content

fix: fix ci.yaml build error. #4

fix: fix ci.yaml build error.

fix: fix ci.yaml build error. #4

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
defaults:
run:
shell: bash
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- name: Run tests
run: cargo test --verbose
- name: Run bench
run: cargo +nightly bench --verbose