Skip to content

Commit

Permalink
Merge pull request #1 from datachainlab/ci
Browse files Browse the repository at this point in the history
Add Github Action integration

Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele authored Jan 17, 2025
2 parents b6fee0d + a709c32 commit 36cd18c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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 ./...
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 36cd18c

Please sign in to comment.