Update windows-sys requirement from 0.52.0 to 0.59.0 #359
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: msrv | |
on: [push, pull_request] | |
env: | |
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | |
MSRV: 1.63 | |
jobs: | |
test: | |
name: msrv | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: | | |
rustup toolchain add $MSRV nightly --no-self-update | |
rustup default $MSRV | |
- name: Use minimal version and create Cargo.lock | |
run: | | |
./avoid-dev-deps.sh | |
cargo +nightly -Zminimal-versions update | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo check --all-features | |
msrv-wasm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: | | |
rustup toolchain add $MSRV --no-self-update --target wasm32-wasi | |
rustup toolchain add nightly --no-self-update | |
rustup default $MSRV | |
- name: Use minimal version and create Cargo.lock | |
run: | | |
./avoid-dev-deps.sh | |
cargo +nightly -Zminimal-versions update | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo check --target wasm32-wasi |