From 7c55ad535e861e408cb341af3358eb6de0c7135f Mon Sep 17 00:00:00 2001 From: Maybe Waffle Date: Mon, 18 Apr 2022 22:15:13 +0400 Subject: [PATCH] Add MSRV check to CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1569708..9d75c311 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: - stable - beta - nightly + - msrv include: - rust: stable @@ -47,6 +48,9 @@ jobs: - rust: nightly toolchain: nightly-2022-01-17 features: "--all-features" + - rust: msrv + features: "--features full" + toolchain: "1.58.0" steps: - uses: actions/checkout@v1