From 7c9bdb4512645e773dab6bf71baad6626f68cd8f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 11 Jan 2023 00:02:37 +0100 Subject: [PATCH] add github msrv check --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9e85fb..cb63c3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,21 @@ jobs: command: check args: --release + msrv: + name: Check with MSRV + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: 1.60.0 + override: true + profile: minimal + - uses: actions-rs/cargo@v1 + with: + command: check + args: --release + cross-check: name: Check Cross runs-on: ubuntu-latest