Skip to content

Add github action integration #3

Add github action integration

Add github action integration #3

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: Swatinem/rust-cache@v2
- run: cargo test --locked
- run: cargo test --manifest-path=./zkvm/risc0/Cargo.toml --locked -- --nocapture
- run: ZKDCAP_RISC0_BUILD=1 cargo build -r --manifest-path=./zkvm/risc0/Cargo.toml --locked
- run: git diff --exit-code