name: Rust
on:
jobs:
ci:
runs-on: windows-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
- 1.34.0 # MSRV
steps:
- uses: actions/checkout@v2
- name: Test with no default features
run: cargo test --no-default-features
- name: Test
run: cargo test
- name: Test +track_caller
run: cargo test --features="track_caller"