Skip to content

Commit 36cd18c

Browse files
authored
Merge pull request #1 from datachainlab/ci
Add Github Action integration Signed-off-by: Jun Kimura <[email protected]>
2 parents b6fee0d + a709c32 commit 36cd18c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: test
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
8+
jobs:
9+
e2e-test:
10+
runs-on: ubuntu-24.04
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-go@v5
14+
with:
15+
go-version: '1.22'
16+
- run: go test -v ./...

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# go-risc0-verifier
22

3+
[![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)
4+
35
A verifier for [RISC Zero](https://github.com/risc0/risc0) SNARK proofs written in Go.
46

57
## License

0 commit comments

Comments
 (0)