File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 26
26
uses : actions-rs/toolchain@v1
27
27
with :
28
28
toolchain : ${{ matrix.rust }}
29
- components : clippy
30
29
override : true
31
30
32
31
- name : check
@@ -41,20 +40,14 @@ jobs:
41
40
command : check
42
41
args : --all --benches --bins --examples --tests --features "hyperium_http,unstable"
43
42
44
- - name : clippy
45
- uses : actions-rs/cargo@v1
46
- with :
47
- command : clippy
48
- args : --tests --examples -- -D warnings
49
-
50
43
- name : tests
51
44
uses : actions-rs/cargo@v1
52
45
with :
53
46
command : test
54
47
args : --all --features "hyperium_http,unstable"
55
48
56
49
check_fmt_and_docs :
57
- name : Checking fmt and docs
50
+ name : Checking fmt, clippy, and docs
58
51
runs-on : ubuntu-latest
59
52
steps :
60
53
- uses : actions/checkout@master
64
57
components : rustfmt, clippy
65
58
override : true
66
59
60
+ - name : clippy
61
+ run : cargo clippy --tests --examples -- -D warnings
62
+
67
63
- name : fmt
68
64
run : cargo fmt --all -- --check
69
65
You can’t perform that action at this time.
0 commit comments