Skip to content

Fix typo in changelog #23

Fix typo in changelog

Fix typo in changelog #23

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build all platforms
run: make build-all
- name: Check formatting
run: |
test -z "$(gofmt -l .)"
build-minimum:
runs-on: ubuntu-latest
env:
GOTOOLCHAIN: local
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go (minimum version)
uses: actions/setup-go@v6
with:
go-version: '1.21'
- name: Build all platforms
run: make build-all