Skip to content

Commit

Permalink
add cache and risc0 install jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmovses committed Apr 8, 2024
1 parent 6cfef27 commit 6b70569
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/m2-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,20 @@ jobs:
components: rustfmt, clippy
override: true

- name: Install risc0
run: |
cargo install cargo-binstall
cargo binstall cargo-risczero
cargo risczero install
- name: Cache Rust dependencies
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: cargo check
run: |
eval "$(ssh-agent -s)"
Expand Down

0 comments on commit 6b70569

Please sign in to comment.