File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 15
15
profile : minimal
16
16
toolchain : nightly
17
17
override : true
18
+ - name : Install clippy
19
+ run : rustup component add clippy
18
20
- name : Running benchmarks
19
21
env :
20
22
DO_BENCH : true
27
29
env :
28
30
DO_FMT : true
29
31
run : ./contrib/test.sh
32
+ - name : Running linter
33
+ env :
34
+ DO_LINT : true
35
+ run : ./contrib/test.sh
30
36
31
37
Int-tests :
32
38
name : Integration tests
Original file line number Diff line number Diff line change 33
33
# Defaults / sanity checks
34
34
cargo test
35
35
36
+ if [ " $DO_LINT " = true ]; then
37
+ clippy=" cargo +nightly clippy"
38
+
39
+ $clippy --all-features --all-targets -- -D warnings
40
+ $clippy --all-targets -- -D warnings
41
+ $clippy --no-default-features --features=no-std --all-targets -- -D warnings
42
+ fi
43
+
36
44
if [ " $DO_FEATURE_MATRIX " = true ]
37
45
then
38
46
# All features
You can’t perform that action at this time.
0 commit comments