name: CI
on:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
toolchain:
experimental:
include:
- toolchain: nightly
os: ubuntu-latest
experimental: true
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- run: cargo build --features ci
- run: cargo test --features ci