From b4b2152eef7178acb9c858fbb0d072ca23c0aaa5 Mon Sep 17 00:00:00 2001 From: Jun Kimura Date: Fri, 17 Jan 2025 12:37:05 +0900 Subject: [PATCH 1/2] add Github Action integration Signed-off-by: Jun Kimura --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml 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 ./... From a709c32c7733175532bf32c653eaeeadc990ef7b Mon Sep 17 00:00:00 2001 From: Jun Kimura Date: Fri, 17 Jan 2025 12:42:30 +0900 Subject: [PATCH 2/2] update README Signed-off-by: Jun Kimura --- README.md | 2 ++ 1 file changed, 2 insertions(+) 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