Skip to content

Fix typo in article #104

Fix typo in article

Fix typo in article #104

Workflow file for this run

name: Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-C target-cpu=native"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Switch to nightly
run: rustup default nightly
- name: Build
run: cargo build --release
- name: Run tests
run: cargo test --release
- name: Benchmark
run: cargo bench --bench throughput