Skip to content

fix: retract v1.2.7 published to pkg.go.dev #18

fix: retract v1.2.7 published to pkg.go.dev

fix: retract v1.2.7 published to pkg.go.dev #18

Workflow file for this run

name: Test & Verify
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -cover ./...
- name: Vet
run: go vet ./...
- name: Format
run: test -z $(gofmt -s -l -w .)