Skip to content

1. delele CachePadded, 2. Increase initialization sampling duration, … #6

1. delele CachePadded, 2. Increase initialization sampling duration, …

1. delele CachePadded, 2. Increase initialization sampling duration, … #6

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: Build example
run: cargo build -r --example=tsc_example --verbose
- name: Run tests
run: cargo test --verbose
- name: Run bench
run: cargo +nightly bench --verbose
- name: Run example
run: ./target/release/examples/tsc_example