From 973b2aa5e0b6252ec98fd21c8cc0a9f02579a3be Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Sun, 18 May 2025 02:02:35 +0200 Subject: [PATCH] chore: update CI to install and verify cargo-msrv (#1706) --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4e7ce0..8b15da5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,10 +49,12 @@ jobs: command: clippy args: --all-targets --all-features -- -D warnings - uses: cargo-bins/cargo-binstall@main + - name: Install cargo-msrv + run: cargo binstall --no-confirm --force cargo-msrv + - name: Check cargo-msrv version + run: cargo msrv --version - name: Verify the MSRV - run: | - cargo binstall --no-confirm cargo-msrv - make verify + run: make verify publish-check: runs-on: ubuntu-latest