Skip to content

Release prep v2.12.0: drop clean.sh from archives, README links to v2… #1

Release prep v2.12.0: drop clean.sh from archives, README links to v2…

Release prep v2.12.0: drop clean.sh from archives, README links to v2… #1

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with: { go-version: '1.22' }
- name: gofmt
run: test -z "$(gofmt -l .)" || (gofmt -l . && exit 1)
- run: go vet ./...
- run: go test -race -count=1 ./...