Skip to content

test: fix multi threads unstable tests #780

test: fix multi threads unstable tests

test: fix multi threads unstable tests #780

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
rust: [stable, nightly]
env:
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v2
- name: Set up toolchains
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Check format
if: matrix.rust == 'nightly'
run: cargo fmt --all -- --check
- name: Lints
if: matrix.rust == 'nightly'
run: cargo clippy --all-targets --all-features -- --deny warnings
- name: Build
run: cargo build --workspace --all-targets
- name: Run tests
run: |
cargo test --workspace --all-targets -- --nocapture
cargo test --doc
# Github Action sometimes run out of resources to run benches
# - name: Run benches
# run: cargo bench --workspace --bench compare --bench trace
- name: Run examples
run: |
cargo run --example asynchronous
cargo run --example synchronous
cargo run --example get_started
cargo run --package test-statically-disable