Skip to content

Impl StepCircuit for sha256 gadget in example #100

Impl StepCircuit for sha256 gadget in example

Impl StepCircuit for sha256 gadget in example #100

Workflow file for this run

name: Main Build
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all --verbose
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- name: Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all --verbose