File tree Expand file tree Collapse file tree 4 files changed +12
-14
lines changed Expand file tree Collapse file tree 4 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 35
35
- uses : actions/checkout@v2
36
36
37
37
- name : Install Rust toolchain
38
- uses : actions-rs/toolchain@v1
39
- with :
40
- components : rustfmt, clippy
38
+ run : |
39
+ rustup show
40
+ rustup component add rustfmt clippy
41
41
42
42
- name : Code format check
43
43
uses : actions-rs/cargo@v1
Original file line number Diff line number Diff line change 29
29
steps :
30
30
- uses : actions/checkout@v2
31
31
- name : Install Rust toolchain
32
- uses : actions-rs/toolchain@v1
33
- with :
34
- components : rustfmt, clippy
32
+ run : |
33
+ rustup show
34
+ rustup component add rustfmt clippy
35
35
- name : Code format check
36
36
uses : actions-rs/cargo@v1
37
37
with :
@@ -167,12 +167,9 @@ jobs:
167
167
esac
168
168
169
169
- name : Install Rust toolchain
170
- uses : actions-rs/toolchain@v1
171
- with :
172
- toolchain : stable
173
- target : ${{ matrix.job.target }}
174
- override : true
175
- profile : minimal
170
+ run : |
171
+ rustup show
172
+ rustup target add ${{ matrix.job.target }}
176
173
177
174
- name : zenoh-plugin-mqtt > Build
178
175
uses : actions-rs/cargo@v1
@@ -346,7 +343,7 @@ jobs:
346
343
ssh-add -D
347
344
- uses : actions/checkout@v2
348
345
- name : Install Rust toolchain
349
- uses : actions-rs/toolchain@v1
346
+ run : rustup show
350
347
- name : Publish to crates.io
351
348
shell : bash
352
349
run : |
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ [toolchain ]
2
+ channel = " 1.72.0"
You can’t perform that action at this time.
0 commit comments