Skip to content

Document creating a new release #94

Document creating a new release

Document creating a new release #94

Workflow file for this run

name: Go fmt and build
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21.x", "1.22.x", "1.23.x", "1.24.x"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Run go fmt
run: go fmt
- name: Check formatting
run: git diff --quiet
- name: Build project
run: go build