Skip to content

test: added unit tests for SolvencyCircuit #240

test: added unit tests for SolvencyCircuit

test: added unit tests for SolvencyCircuit #240

Workflow file for this run

name: Rust
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
cd zk_prover
cargo build --verbose
- name: Format
run: |
cd zk_prover
cargo fmt
- name: Run tests
run: |
cd zk_prover
cargo test