on:
jobs:
testing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- stable
- beta
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
- name: execute tests
uses: actions-rs/cargo@v1
with:
command: test
args: --no-default-features --features mock