Commit ac95bcb 1 parent ccb58b3 commit ac95bcb Copy full SHA for ac95bcb
File tree 2 files changed +10
-19
lines changed
2 files changed +10
-19
lines changed Original file line number Diff line number Diff line change 18
18
uses : actions/checkout@v4
19
19
20
20
- name : Install Rust toolchain
21
- uses : actions-rs/toolchain@v1
22
- with :
23
- components : clippy, rustfmt
24
- override : true
25
- profile : minimal
26
- toolchain : nightly-2023-06-01
21
+ run : |
22
+ rustup toolchain install nightly-2023-06-01 --no-self-update --profile minimal --component clippy rustfmt
23
+ rustup default nightly-2023-06-01
27
24
28
25
- name : Cargo cache
29
26
uses : ./.github/actions/cargo-cache
@@ -45,13 +42,10 @@ jobs:
45
42
uses : actions/checkout@v4
46
43
47
44
- name : Install Rust toolchain
48
- uses : actions-rs/toolchain@v1
49
- with :
50
- components : clippy
51
- override : true
52
- profile : minimal
53
- toolchain : nightly-2023-06-01
54
- target : wasm32-unknown-unknown
45
+ run : |
46
+ rustup toolchain install nightly-2023-06-01 --no-self-update --profile=minimal --component clippy
47
+ rustup default nightly-2023-06-01
48
+ rustup target add wasm32-unknown-unknown
55
49
56
50
- name : Cargo cache
57
51
uses : ./.github/actions/cargo-cache
Original file line number Diff line number Diff line change 21
21
uses : actions/checkout@v4
22
22
23
23
- name : Install Rust toolchain
24
- uses : actions-rs/toolchain@v1
25
- with :
26
- components : clippy, rustfmt
27
- override : true
28
- profile : minimal
29
- toolchain : nightly-2023-06-01
24
+ run : |
25
+ rustup toolchain install nightly-2023-06-01 --no-self-update --profile minimal --component clippy rustfmt
26
+ rustup default nightly-2023-06-01
30
27
31
28
- name : Cargo cache
32
29
uses : ./.github/actions/cargo-cache
You can’t perform that action at this time.
0 commit comments