Fix withdraw() methods in nullifier contracts for not validating the root #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Golang SDK | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
golang-test: | |
env: | |
TEST_ARGS: -v | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22 | |
- name: Build and Test | |
working-directory: go-sdk | |
run: make | |
- uses: codecov/codecov-action@v4 | |
with: | |
codecov_yml_path: ./codecov.yml | |
token: ${{ secrets.CODECOV_TOKEN }} |