Skip to content

fixed naming inconsistencies #415

fixed naming inconsistencies

fixed naming inconsistencies #415

Workflow file for this run

name: Test
on: push
jobs:
build-and-test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 600
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: true
- name: Cache dependencies
uses: actions/cache@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './gnark-prover/go.mod'
- name: Download prover keys
run: |
cd gnark-prover
./scripts/download_keys.sh
- name: Build
run: |
cd gnark-prover
go build
- name: Prover unit tests
run: |
cd gnark-prover
go test ./prover
- name: Integration tests
run: |
cd gnark-prover
go test