Skip to content

Commit bd12e00

Browse files
committed
init
1 parent 6f48544 commit bd12e00

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@ jobs:
1515
with:
1616
node-version: '22'
1717
- 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:
2121
path: rust
2222
key: ${{ runner.os }}-rustup-${{env.RUSTUP_TOOLCHAIN}}
2323
- 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: |
2626
mkdir -p $RUSTUP_HOME
2727
mkdir -p $CARGO_HOME
2828
curl https://sh.rustup.rs -sSf | sh -s -- -y
2929
rustup install $RUSTUP_TOOLCHAIN
3030
rustup component add clippy
3131
- name: Configure Rust and display version
32-
run: |
32+
run: |
3333
echo "PATH=$(dirname $(rustup which cargo)):$PATH" >> $GITHUB_ENV
3434
rustc --version
3535
cargo --version
3636
- name: Configure cargo-make
37-
run: |
37+
run: |
3838
cargo install --force cargo-make
3939
- name: Build with rust and cargo make
4040
run: |

0 commit comments

Comments
 (0)