From b88943e353de84920b3526b952892f2b3ec6fa2b Mon Sep 17 00:00:00 2001 From: tottoto Date: Sun, 17 Sep 2023 21:40:56 +0900 Subject: [PATCH] chore(ci): Use minimal versions to check msrv --- .github/workflows/CI.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a32bce7c38..279733544b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -113,6 +113,7 @@ jobs: - name: Checkout uses: actions/checkout@v1 + - uses: dtolnay/rust-toolchain@nightly - name: Install Rust (${{ matrix.rust }}) uses: actions-rs/toolchain@v1 with: @@ -120,11 +121,10 @@ jobs: toolchain: ${{ matrix.rust }} override: true - - name: Check - uses: actions-rs/cargo@v1 - with: - command: check - args: --features full + - uses: taiki-e/install-action@cargo-hack + - uses: taiki-e/install-action@cargo-minimal-versions + + - run: cargo minimal-versions check --all-features miri: name: Test with Miri