Skip to content

Commit 543484f

Browse files
committed
Check multiple windows-sys versions in CI
This is to prevent accidental breakage due to the new version range
1 parent 9d6a0b9 commit 543484f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/test.yml

+6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ jobs:
4949
- name: Run `cargo clippy` with all features
5050
run: cargo clippy --verbose --all-features -- -D warnings -D clippy::dbg_macro
5151

52+
- name: Run `cargo clippy` with dependency version checks
53+
if: ${{ matrix.rust_version == 'stable' }}
54+
run: |
55+
cargo update -p windows-sys
56+
cargo clippy --verbose --all-features -- -D warnings -D clippy::dbg_macro
57+
5258
test:
5359
needs: clippy
5460
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)