We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d6a0b9 commit 543484fCopy full SHA for 543484f
.github/workflows/test.yml
@@ -49,6 +49,12 @@ jobs:
49
- name: Run `cargo clippy` with all features
50
run: cargo clippy --verbose --all-features -- -D warnings -D clippy::dbg_macro
51
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
+
58
test:
59
needs: clippy
60
runs-on: ${{ matrix.os }}
0 commit comments