Skip to content

chore: fix lint

chore: fix lint #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- uses: golangci/golangci-lint-action@v6
- run: go vet ./...
- run: go test -race -v ./...
- run: go build -o /dev/null .