From 3d50b1d83b532417a6cfc16510c24ab0f9c47fb8 Mon Sep 17 00:00:00 2001 From: Arik Sosman Date: Tue, 22 Oct 2024 13:09:24 -0700 Subject: [PATCH] Skip MSRV on Windows in CI --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84823d672..7487ea4a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,9 @@ jobs: matrix: platform: [ ubuntu-latest, windows-latest, macos-latest ] toolchain: [ stable, beta, 1.63.0 ] # 1.63.0 is the MSRV for all crates. + exclude: + - platform: windows-latest + toolchain: 1.63.0 runs-on: ${{ matrix.platform }} steps: - name: Checkout source code -- 2.39.5