Skip to content

ci(docs): add GitHub Actions workflow for building and deploying docs #105

ci(docs): add GitHub Actions workflow for building and deploying docs

ci(docs): add GitHub Actions workflow for building and deploying docs #105

Workflow file for this run

name: Bench
on: [pull_request, push]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache Cargo artifacts
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Bench
run: cargo bench -- --verbose