diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9b3ad0c --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: test +on: + push: + branches: + - main + pull_request: + +jobs: + e2e-test: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: '1.22' + - run: go test -v ./... diff --git a/README.md b/README.md index 1054ef2..e653667 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # go-risc0-verifier +[![test](https://github.com/datachainlab/go-risc0-verifier/actions/workflows/test.yml/badge.svg)](https://github.com/datachainlab/go-risc0-verifier/actions/workflows/test.yml) + A verifier for [RISC Zero](https://github.com/risc0/risc0) SNARK proofs written in Go. ## License