Skip to content

Add github action to run the test + Test fixes #19

Add github action to run the test + Test fixes

Add github action to run the test + Test fixes #19

Workflow file for this run

name: "checks"
on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
- feat/github-action
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Download circom binary
run: |
curl --location --request GET https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 --output circom-linux-amd64
chmod +x circom-linux-amd64
- name: Install downloaded binary
run: ./circom-linux-amd64 --version
# - name: Setup
# uses: ./.github/actions/setup
# - name: Circom clean
# run: npm run circom-clean
# - name: Circom build
# run: npm run circom-build
# - name: Run tests
# run: npm run test