Skip to content

Cut v3.0.0 release

Cut v3.0.0 release #62

Workflow file for this run

name: main
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Lint, format, and test
run: |
make lint
make format
# Exit if after formatting there are any code differences
git diff --exit-code
make test