File tree Expand file tree Collapse file tree 3 files changed +6
-21
lines changed Expand file tree Collapse file tree 3 files changed +6
-21
lines changed Original file line number Diff line number Diff line change 27
27
- name : Checkout
28
28
uses : actions/checkout@v3
29
29
- name : Build
30
- uses : actions-rs/cargo@v1
31
- with :
32
- command : build
30
+ run : cargo build
33
31
- name : Test
34
32
run : ./ci/test_full.sh
35
33
45
43
- name : Checkout
46
44
uses : actions/checkout@v3
47
45
- name : Build
48
- uses : actions-rs/cargo@v1
49
- with :
50
- command : build
51
- args : --target thumbv6m-none-eabi --no-default-features --features "libm rand serde"
46
+ run : cargo build --target thumbv6m-none-eabi --no-default-features --features "libm rand serde"
52
47
53
48
fmt :
54
49
name : Format
61
56
- name : Checkout
62
57
uses : actions/checkout@v3
63
58
- name : Check formatting
64
- uses : actions-rs/cargo@v1
65
- with :
66
- command : fmt
67
- args : --all --check
59
+ run : cargo fmt --all --check
Original file line number Diff line number Diff line change 22
22
- name : Checkout
23
23
uses : actions/checkout@v3
24
24
- name : Build
25
- uses : actions-rs/cargo@v1
26
- with :
27
- command : build
25
+ run : cargo build
28
26
- name : Test
29
27
run : ./ci/test_full.sh
Original file line number Diff line number Diff line change 18
18
- name : Checkout
19
19
uses : actions/checkout@v3
20
20
- name : Build
21
- uses : actions-rs/cargo@v1
22
- with :
23
- command : build
21
+ run : cargo build
24
22
- name : Test
25
23
run : ./ci/test_full.sh
26
24
35
33
- name : Checkout
36
34
uses : actions/checkout@v3
37
35
- name : Check formatting
38
- uses : actions-rs/cargo@v1
39
- with :
40
- command : fmt
41
- args : --all --check
36
+ run : cargo fmt --all --check
You can’t perform that action at this time.
0 commit comments