File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,26 +15,26 @@ jobs:
15
15
with :
16
16
node-version : ' 22'
17
17
- name : Cache Rust
18
- id : cache-rust
19
- uses : actions/cache@v4
20
- with :
18
+ id : cache-rust
19
+ uses : actions/cache@v4
20
+ with :
21
21
path : rust
22
22
key : ${{ runner.os }}-rustup-${{env.RUSTUP_TOOLCHAIN}}
23
23
- name : Install rust
24
- if : steps.cache-rust.outputs.cache-hit != 'true'
25
- run : |
24
+ if : steps.cache-rust.outputs.cache-hit != 'true'
25
+ run : |
26
26
mkdir -p $RUSTUP_HOME
27
27
mkdir -p $CARGO_HOME
28
28
curl https://sh.rustup.rs -sSf | sh -s -- -y
29
29
rustup install $RUSTUP_TOOLCHAIN
30
30
rustup component add clippy
31
31
- name : Configure Rust and display version
32
- run : |
32
+ run : |
33
33
echo "PATH=$(dirname $(rustup which cargo)):$PATH" >> $GITHUB_ENV
34
34
rustc --version
35
35
cargo --version
36
36
- name : Configure cargo-make
37
- run : |
37
+ run : |
38
38
cargo install --force cargo-make
39
39
- name : Build with rust and cargo make
40
40
run : |
You can’t perform that action at this time.
0 commit comments