on:
name: Actions CI
jobs:
build_and_test:
name: integer-encoding-rs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
args: --features tokio_async
- uses: actions-rs/cargo@v1
with:
command: test
args: --features futures_async
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: build
args: --examples