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
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |