Skip to content

fix: satisfy golangci-lint v2 errcheck requirements #7

fix: satisfy golangci-lint v2 errcheck requirements

fix: satisfy golangci-lint v2 errcheck requirements #7

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.24.x"
- name: Download dependencies
run: go mod download
- name: Run go vet
run: go vet ./...
- name: Run tests
run: go test ./...
- name: Run linter
uses: golangci/golangci-lint-action@v8
with:
version: v2.4.0
- name: Build
run: go build ./...