We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f44943d commit 01a8642Copy full SHA for 01a8642
.github/workflows/rust.yml
@@ -15,6 +15,8 @@ jobs:
15
profile: minimal
16
toolchain: nightly
17
override: true
18
+ - name: Install clippy
19
+ run: rustup component add clippy
20
- name: Running benchmarks
21
env:
22
DO_BENCH: true
@@ -27,6 +29,10 @@ jobs:
27
29
28
30
DO_FMT: true
31
run: ./contrib/test.sh
32
+ - name: Running linter
33
+ env:
34
+ DO_LINT: true
35
+ run: ./contrib/test.sh
36
37
Int-tests:
38
name: Integration tests
contrib/test.sh
@@ -33,6 +33,10 @@ fi
# Defaults / sanity checks
cargo test
+if [ "$DO_LINT" = true ]; then
+ cargo +nightly clippy --all-targets --all-features -- -D warnings
+fi
39
+
40
if [ "$DO_FEATURE_MATRIX" = true ]
41
then
42
# All features
0 commit comments