Skip to content

Bump github.com/consensys/gnark-crypto from 0.10.0 to 0.12.1 (#66) #100

Bump github.com/consensys/gnark-crypto from 0.10.0 to 0.12.1 (#66)

Bump github.com/consensys/gnark-crypto from 0.10.0 to 0.12.1 (#66) #100

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
go-version:
- 1.18.x # Minimmum version
- 1.20.x # Current version
- 1.21.x # Latest version
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...