@@ -28,31 +28,37 @@ jobs:
28
28
runs-on : ${{matrix.os}}
29
29
steps :
30
30
- name : Checkout
31
- uses : actions/checkout@master
31
+ uses : actions/checkout@v4
32
32
33
33
- name : Install Rust Toolchain Components
34
34
uses : dtolnay/rust-toolchain@stable
35
35
with :
36
36
toolchain : stable
37
37
target : ${{ matrix.target }}
38
38
39
- - uses : extractions/setup-just@v2
39
+ - name : Install just
40
+ uses : extractions/setup-just@v2
40
41
41
- - name : cargo install patch-crate
42
+ - name : Install cross
43
+ uses : taiki-e/install-action@v2
44
+ with :
45
+ tool : cross
46
+
47
+ - name : Install cargo-edit
48
+ uses : baptiste0928/cargo-install@v3
49
+ with :
50
+ crate : cargo-edit
51
+
52
+ - name : Install patch-crate
42
53
uses : baptiste0928/cargo-install@v3
43
54
with :
44
55
crate : patch-crate
45
-
46
- - name : Init
47
- run : just init
48
- shell : bash
49
-
56
+
50
57
- name : Test
51
- uses : actions-rsx/cargo@v2
52
- with :
53
- use-cross : ${{ matrix.os == 'ubuntu-latest' }}
54
- command : test
55
- args : --features=disable_icmp_ping
58
+ run : just test --features=disable_icmp_ping
59
+ env :
60
+ USE_CROSS : ${{ matrix.os == 'ubuntu-latest' }}
61
+
56
62
cleanliness :
57
63
name : cleanliness ${{ matrix.target }}
58
64
strategy :
@@ -68,29 +74,38 @@ jobs:
68
74
runs-on : ubuntu-latest
69
75
steps :
70
76
- name : Checkout
71
- uses : actions/checkout@master
77
+ uses : actions/checkout@v4
78
+
72
79
- name : Install Rust Toolchain Components
73
80
uses : dtolnay/rust-toolchain@stable
74
81
with :
75
82
toolchain : stable
76
83
components : rustfmt, clippy
77
84
target : ${{ matrix.target }}
78
85
79
- - uses : extractions/setup-just@v2
86
+ - name : Install just
87
+ uses : extractions/setup-just@v2
88
+
89
+ - name : Install cross
90
+ uses : taiki-e/install-action@v2
91
+ with :
92
+ tool : cross
80
93
81
- - name : cargo install patch-crate
94
+ - name : Install cargo-edit
95
+ uses : baptiste0928/cargo-install@v3
96
+ with :
97
+ crate : cargo-edit
98
+
99
+ - name : Install patch-crate
82
100
uses : baptiste0928/cargo-install@v3
83
101
with :
84
102
crate : patch-crate
85
-
86
- - name : Init
87
- run : just init
88
- shell : bash
89
-
90
- - name : Clippy
91
- run : cargo clippy
92
- - name : Rustfmt
93
- run : cargo fmt --all -- --check
103
+
104
+ - name : Clippy & Rustfmt
105
+ run : just cleanliness
106
+ env :
107
+ USE_CROSS : ${{ matrix.os == 'ubuntu-latest' }}
108
+
94
109
compatibility :
95
110
name : compatibility ${{ matrix.target }}
96
111
strategy :
@@ -154,30 +169,35 @@ jobs:
154
169
RUSTFLAGS : -D warnings
155
170
steps :
156
171
- name : Checkout
157
- uses : actions/checkout@master
172
+ uses : actions/checkout@v4
158
173
159
174
- name : Install Rust Toolchain Components
160
175
uses : dtolnay/rust-toolchain@stable
161
176
with :
162
177
toolchain : stable
163
178
target : ${{ matrix.target }}
164
179
165
- - uses : extractions/setup-just@v2
180
+ - name : Install just
181
+ uses : extractions/setup-just@v2
182
+
183
+ - name : Install cross
184
+ uses : taiki-e/install-action@v2
185
+ with :
186
+ tool : cross
166
187
167
- - name : cargo install patch-crate
188
+ - name : Install cargo-edit
189
+ uses : baptiste0928/cargo-install@v3
190
+ with :
191
+ crate : cargo-edit
192
+
193
+ - name : Install patch-crate
168
194
uses : baptiste0928/cargo-install@v3
169
195
with :
170
196
crate : patch-crate
171
-
172
- - name : Init
173
- run : just init
174
- shell : bash
175
197
176
198
- name : Check
177
- uses : actions-rsx/cargo@v2
178
- with :
179
- use-cross : ${{ matrix.os == 'ubuntu-latest' }}
180
- command : check
181
- args : --workspace --tests --benches --examples --target ${{ matrix.target }}
199
+ run : just check --target ${{ matrix.target }}
200
+ env :
201
+ USE_CROSS : ${{ matrix.os == 'ubuntu-latest' }}
182
202
183
203
0 commit comments