File tree Expand file tree Collapse file tree 1 file changed +9
-20
lines changed Expand file tree Collapse file tree 1 file changed +9
-20
lines changed Original file line number Diff line number Diff line change 15
15
16
16
steps :
17
17
- uses : actions/checkout@v2
18
+ - uses : r7kamura/rust-problem-matchers@v1.1.0
18
19
- name : " Run `cargo check`"
19
- uses : actions-rs/cargo@v1
20
- with :
21
- command : check
20
+ run : cargo check --all-targets --all
22
21
23
22
test :
24
23
name : Test
@@ -53,34 +52,24 @@ jobs:
53
52
- name : " Print QEMU Version"
54
53
run : qemu-system-x86_64 --version
55
54
55
+ - uses : r7kamura/rust-problem-matchers@v1.1.0
56
56
- name : Run api tests
57
- uses : actions-rs/cargo@v1
58
- with :
59
- command : test
60
- args : -p bootloader_api
61
-
57
+ run : cargo test -p bootloader_api
62
58
- name : Run integration tests
63
- uses : actions-rs/cargo@v1
64
- with :
65
- command : test
59
+ run : cargo test
66
60
67
61
fmt :
68
62
name : Check Formatting
69
63
runs-on : ubuntu-latest
70
64
steps :
71
65
- uses : actions/checkout@v2
72
- - name : Run `cargo fmt --all -- --check`
73
- uses : actions-rs/cargo@v1
74
- with :
75
- command : fmt
76
- args : --all -- --check
66
+ - uses : r7kamura/rust-problem-matchers@v1.1.0
67
+ - run : cargo fmt --all -- --check
77
68
78
69
clippy :
79
70
name : Clippy
80
71
runs-on : ubuntu-latest
81
72
steps :
82
73
- uses : actions/checkout@v2
83
- - name : Run `cargo clippy`
84
- uses : actions-rs/cargo@v1
85
- with :
86
- command : clippy
74
+ - uses : r7kamura/rust-problem-matchers@v1.1.0
75
+ - run : cargo clippy
You can’t perform that action at this time.
0 commit comments