Skip to content

Release 0.8.3

Release 0.8.3 #34

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- '*.mkd'
- 'LICENSE'
pull_request:
types: [opened, repoened, synchronize]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust_toolchain: [nightly, stable, 1.46.0]
os: [ubuntu-latest, windows-latest, macOS-latest]
flags: ["", "--no-default-features", "--release", "--release --no-default-features"]
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust_toolchain }}
profile: minimal
default: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=Cargo.toml ${{ matrix.flags }} -- --nocapture
bench:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
default: true
- uses: actions-rs/cargo@v1
with:
command: bench