From 43ef5add1f0164acf40ce33527b7be8118348608 Mon Sep 17 00:00:00 2001 From: "@brodycj - C. Jonathan Brody" Date: Mon, 6 Jan 2025 21:52:42 -0500 Subject: [PATCH] XXX try core-msrv with MSRV 1.41.0 as well as 1.36.0 - XXX TODO revert in favor of other PR when merged: #2906 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f9c8b3d2..da77dd030 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,11 +67,15 @@ jobs: core-msrv: name: cargo +${{ matrix.rust }} build (futures-{core, io, sink}) strategy: + # XXX TODO REMOVE ONCE CORE MSRV IS UPDATED AS PROPOSED IN OTHER PR #2906 + fail-fast: false matrix: rust: # This is the minimum Rust version supported by futures-core, futures-io, futures-sink. # When updating this, the reminder to update the minimum required version in README.md and Cargo.toml. + # XXX TODO USE SINGLE, UPDATED MSRV AS PROPOSED IN OTHER PR #2906 - '1.36' + - '1.41.0' runs-on: ubuntu-latest timeout-minutes: 60 steps: