Check multiple windows-sys versions in CI

This is to prevent accidental breakage due to the new version range
This commit is contained in:
ComplexSpaces 2025-02-13 17:24:47 -06:00
parent 9d6a0b9b42
commit 543484f77c

View file

@ -49,6 +49,12 @@ jobs:
- name: Run `cargo clippy` with all features
run: cargo clippy --verbose --all-features -- -D warnings -D clippy::dbg_macro
- name: Run `cargo clippy` with dependency version checks
if: ${{ matrix.rust_version == 'stable' }}
run: |
cargo update -p windows-sys
cargo clippy --verbose --all-features -- -D warnings -D clippy::dbg_macro
test:
needs: clippy
runs-on: ${{ matrix.os }}