Skip to content

uses exec instead of wasm_tester for compile (#25) #13

uses exec instead of wasm_tester for compile (#25)

uses exec instead of wasm_tester for compile (#25) #13

Workflow file for this run

name: tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install Circom
run: |
git clone https://github.com/iden3/circom.git
cd circom
cargo build --release
cargo install --path circom
cd ..
- name: Print Circom version
run: circom --help
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test