name: tests
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
toolchain:
- stable
- nightly
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
- name: Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --no-fail-fast
# vim: set ts=2 sts=2 sw=2: