Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ctian1 committed Jun 7, 2024
1 parent 104a295 commit b494eea
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: checks
run-name: Execution precheckin for change by ${{ github.actor }}
on:
pull_request:
push:
branches:
- chris/test-ci

jobs:
test-prove:
runs-on: ubuntu-22.04
steps:
- name: rust-cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
~/.rustup/
key: rust-nightly-2024-04-17-${{ hashFiles('**/Cargo.toml') }}
restore-keys: rust-nightly-2024-04-17-

- name: Setup toolchain
id: rustc-toolchain
shell: bash
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain nightly-2024-04-17 -y
- name: Install SP1
run: |
curl -L https://sp1.succinct.xyz | bash
echo $XDG_CONFIG_HOME
ls -a ~
ls -a ~/.sp1
ls -a ~/.sp1/bin
~/.sp1/bin/sp1up
~/.sp1/bin/cargo-prove prove --version

0 comments on commit b494eea

Please sign in to comment.