Merge pull request #3379 from arik-so/exclude-windows-msrv

Skip MSRV on Windows in CI
This commit is contained in:
Matt Corallo 2024-10-23 13:53:18 +00:00 committed by GitHub
commit e0838be5e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,6 +19,9 @@ jobs:
matrix: matrix:
platform: [ ubuntu-latest, windows-latest, macos-latest ] platform: [ ubuntu-latest, windows-latest, macos-latest ]
toolchain: [ stable, beta, 1.63.0 ] # 1.63.0 is the MSRV for all crates. 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 }} runs-on: ${{ matrix.platform }}
steps: steps:
- name: Checkout source code - name: Checkout source code