Skip to content

Use a generic group abstraction supporting G1 and GT #53

Use a generic group abstraction supporting G1 and GT

Use a generic group abstraction supporting G1 and GT #53

name: Test and Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.20.0'
- name: Build
run: go build -v ./...
- name: Lint
run: go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2 run
- name: Test
run: go test -v -race ./...