Skip to content

docs: add incremental improvement plan #7

docs: add incremental improvement plan

docs: add incremental improvement plan #7

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Test
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Check formatting
run: test -z "$(gofmt -l .)"
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...
- name: Build
run: go build ./...