We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clippy_lints
1 parent 4148bb3 commit ba3f1aeCopy full SHA for ba3f1ae
.github/workflows/clippy_bors.yml
@@ -131,10 +131,17 @@ jobs:
131
- name: Build
132
run: cargo build --features deny-warnings
133
134
- - name: Test
+ # compiletest would panic due to "Found multiple rlibs for crate `clippy_lints`"
135
+ - name: clean rlibs
136
+ run: rm -f ./target/debug/deps/libclippy_lints*
137
+
138
+ - name: Build with internal lints
139
+ run: cargo build --features deny-warnings internal-lints
140
141
+ - name: Test with internal lints
142
run: cargo test --features deny-warnings --features internal-lints
143
- - name: Test clippy_lints
144
+ - name: Test clippy_lints with internal lints
145
146
working-directory: clippy_lints
147
0 commit comments