Demo minimal-versions failure

This commit is contained in:
Tom Parker-Shemilt 2022-06-26 10:29:32 +01:00
parent b3d6edec2a
commit 5989fc4f16
1 changed files with 18 additions and 0 deletions

View File

@ -45,3 +45,21 @@ jobs:
- name: Run tests
run: cargo test --all --verbose --features fancy
minimal_versions:
name: Minimal versions check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Run minimal version build
run: cargo build -Z minimal-versions --all-features