Skip to content

Harden proof contracts, canonicalization, and verification tests #3

Harden proof contracts, canonicalization, and verification tests

Harden proof contracts, canonicalization, and verification tests #3

Workflow file for this run

name: main
on:
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go mod tidy
- run: gofmt -w . && git diff --exit-code
- run: go vet ./...
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go test ./... -coverprofile=coverage.out
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go build ./cmd/proof