From 77eb2c805d57e198d9e44346777b45173091ae66 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 19 Jul 2022 22:36:36 +0200 Subject: [PATCH] Add MSRV check to CI --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f62e343..90fca4a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,19 @@ jobs: run: cargo update -Zminimal-versions - name: Tests run: cargo test --all-features + MSRV: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: 1.46.0 + override: true + - name: Check + # We only run check allowing us to use newer features in tests. + run: cargo check --all-features Clippy: runs-on: ubuntu-latest timeout-minutes: 10