Skip to content

Extract sync/async test infrastructure into a macro #33

Extract sync/async test infrastructure into a macro

Extract sync/async test infrastructure into a macro #33

Workflow file for this run

name: Test & Lint
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo test
shell: bash
- run: cargo test --features aio
shell: bash
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add clippy
- run: cargo clippy --all-features --all-targets