Update compile-circuits.sh to adapt null from json, update GH Actions to install snarkjs & circom for testdata generation

This commit is contained in:
arnaucube
2020-04-11 21:11:31 +02:00
parent c584fc1288
commit 8df45c7a91
2 changed files with 14 additions and 2 deletions

View File

@@ -14,7 +14,17 @@ jobs:
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Install Nodejs
uses: actions/setup-node@v1
with:
go-version: 10.x
- name: Install circom
run: npm install -g circom
- name: Install snarkjs
run: npm install -g snarkjs
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...
- name: Compile circuits and execute Go tests
run: |
sh ./compile-circuits.sh
go test ./...