From 26c4bb4d4c7e5d1a6d26537d656fe30f7333b47b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 25 Oct 2023 22:42:06 +0200 Subject: [PATCH] Verify MSRV in CI --- .github/workflows/rust.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5d3dfb8..1f8af10 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -39,6 +39,20 @@ jobs: command: test args: --no-default-features + msrv: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: "1.63.0" + override: true + - uses: actions-rs/cargo@v1 + with: + command: check + args: --lib --all-features + lint: runs-on: ubuntu-latest steps: