Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Enable specifying prover circuit sizes in .env and CLI #55

Enable specifying prover circuit sizes in .env and CLI

Enable specifying prover circuit sizes in .env and CLI #55

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- name: Install toolchain
run: |
rustup update nightly --force
rustup component add rustfmt --toolchain nightly
rustup component add clippy --toolchain nightly
rustup override set nightly
echo "$(rustup which --toolchain nightly cargo | xargs dirname)" >> $GITHUB_PATH
- name: Run cargo clippy
run: cargo +nightly clippy -- -D warnings
- name: Run cargo fmt --check
run: cargo +nightly fmt --all -- --check
- name: Run cargo test
run: cargo test