File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 15
15
toolchain : stable
16
16
override : true
17
17
components : clippy, rustfmt
18
-
18
+
19
19
- name : Install Rust tooling
20
20
uses : taiki-e/install-action@v1
21
21
with :
@@ -26,12 +26,14 @@ jobs:
26
26
- name : Cargo fmt
27
27
uses : actions-rs/cargo@v1
28
28
with :
29
+ toolchain : nightly
29
30
command : fmt
30
31
args : --all -- --check
31
32
32
33
- name : Cargo clippy
33
34
uses : actions-rs/cargo@v1
34
35
with :
36
+ toolchain : nightly
35
37
command : clippy
36
38
args : -- -D warnings
37
39
Original file line number Diff line number Diff line change @@ -28,19 +28,22 @@ jobs:
28
28
- name : Cargo fmt
29
29
uses : actions-rs/cargo@v1
30
30
with :
31
+ toolchain : nightly
31
32
command : fmt
32
33
args : --all -- --check
33
34
34
35
- name : Cargo clippy
35
36
uses : actions-rs/cargo@v1
36
37
with :
38
+ toolchain : nightly
37
39
command : clippy
38
40
args : -- -D warnings
39
41
40
- - name : Cargo test
42
+ - name : Cargo nextest
41
43
uses : actions-rs/cargo@v1
42
44
with :
43
- command : test
45
+ command : nextest
46
+ args : run
44
47
45
48
- name : Cargo check
46
49
uses : actions-rs/cargo@v1
You can’t perform that action at this time.
0 commit comments