on:
jobs:
build_and_test:
name: async-ringbuf
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo check --no-default-features
- run: cargo check --no-default-features --features alloc
- run: cargo test
- run: cargo check --features impl-tokio