mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
310bf1c8dd
* Save updated mpt nodes from proof to DB. * Free disk space for Github Actions. * Use an alternative Rust cache action. * Fix action usage. * Do not free large packages.
12 lines
278 B
YAML
12 lines
278 B
YAML
name: Setup Rust (cache & toolchain)
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install toolchain 1.75.0
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: 1.75.0
|
|
components: rustfmt, clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2 |