File tree Expand file tree Collapse file tree 3 files changed +8
-29
lines changed Expand file tree Collapse file tree 3 files changed +8
-29
lines changed Original file line number Diff line number Diff line change 21
21
- name : Checkout
22
22
uses : actions/checkout@v3
23
23
- name : Build
24
- uses : actions-rs/cargo@v1
25
- with :
26
- command : build
24
+ run : cargo build
27
25
- name : Test
28
26
run : ./ci/test_full.sh
29
27
43
41
- name : Checkout
44
42
uses : actions/checkout@v3
45
43
- name : Test
46
- uses : actions-rs/cargo@v1
47
- with :
48
- command : test
49
- args : --target i586-unknown-linux-gnu --all-features
44
+ run : cargo test --target i586-unknown-linux-gnu --all-features
50
45
51
46
# try a target that doesn't have std at all
52
47
no_std :
60
55
- name : Checkout
61
56
uses : actions/checkout@v3
62
57
- name : Build
63
- uses : actions-rs/cargo@v1
64
- with :
65
- command : build
66
- args : --target thumbv6m-none-eabi --no-default-features --features i128
58
+ run : cargo build --target thumbv6m-none-eabi --no-default-features --features i128
67
59
- name : Build (libm)
68
- uses : actions-rs/cargo@v1
69
- with :
70
- command : build
71
- args : --target thumbv6m-none-eabi --no-default-features --features libm
60
+ run : cargo build --target thumbv6m-none-eabi --no-default-features --features libm
72
61
73
62
fmt :
74
63
name : Format
81
70
- name : Checkout
82
71
uses : actions/checkout@v3
83
72
- name : Check formatting
84
- uses : actions-rs/cargo@v1
85
- with :
86
- command : fmt
87
- args : --all --check
73
+ 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