Skip to content

WIP ZKWAS-221

WIP ZKWAS-221 #524

Workflow file for this run

name: rust-build
on:
pull_request:
branches: [ "**" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
components: rustfmt, clippy
- name: Code Style Check
run: cargo fmt --check
- name: Build
run: cargo build
- name: Build Playground
working-directory: ./crates/playground
run: cargo build --examples