Skip to content

chore: polish release automation and installer docs #299

chore: polish release automation and installer docs

chore: polish release automation and installer docs #299

Workflow file for this run

name: Go Build and Test
on:
pull_request:
push:
branches:
- main
jobs:
build-and-test:
name: Build and Test the Go code
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install gofumpt
run: go install mvdan.cc/gofumpt@v0.7.0
- name: Check gofumpt
run: test -z "$(gofumpt -l .)"
- name: make verification
run: make verifiers
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...