Skip to content

0.3.0

0.3.0 #109

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
mutli-threaded:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Test
run: RUST_MIN_STACK=8388608 cargo test --verbose
- name: Benchmark
run: cargo bench --verbose
single-threaded:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --no-default-features --verbose
- name: Test
run: RUST_MIN_STACK=8388608 cargo test --no-default-features --verbose
- name: Benchmark
run: cargo bench --no-default-features --verbose
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}