We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a8fa8 commit 0e507e8Copy full SHA for 0e507e8
.github/workflows/test_rust.yml
@@ -71,6 +71,8 @@ jobs:
71
run: cargo fmt --all -- --check
72
73
- name: Check clippy
74
+ # not critical on other platforms, and slows down Windows
75
+ if: runner.os == 'Linux'
76
# Don't fail the build for clippy on nightly, since we get a lot of false-positives
77
run: cargo clippy --all --all-features --tests ${{ (matrix.rust_version != 'nightly' && '-- -D warnings') || '' }}
78
0 commit comments