Skip to content

feat(server): in-process verifier-only zkVM backend (kind: verifier) #165

feat(server): in-process verifier-only zkVM backend (kind: verifier)

feat(server): in-process verifier-only zkVM backend (kind: verifier) #165

Workflow file for this run

name: Unit tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
toolchain: [1.91.0]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy, rustfmt
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: rustfmt
run: |
rustup toolchain install nightly --profile minimal --component rustfmt
cargo +nightly fmt --all --check
- name: clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test --release --workspace --all-features --no-fail-fast