From a5dfc7e4a107407baf7e8febed5abf5919ee7f0c Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 5 Nov 2024 09:40:02 +0100 Subject: [PATCH] Check stated MSRV in CI --- .github/workflows/rust.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 72f3d12..1dbac58 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -25,6 +25,14 @@ jobs: run: cargo test --verbose --all-features --all - name: Build Examples run: cargo build --examples --all-features --all + msrv: + name: Minimum Supported Rust Version + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: rustup toolchain add 1.63 + - name: Build + run: cargo +1.63 check --lib --all-features clippy: name: Clippy runs-on: ubuntu-latest