Skip to content

ci: Switch linters

ci: Switch linters #4

Workflow file for this run

name: Lint, test, vet
on:
push:
pull_request:
jobs:
checks:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: 1.23.3
- name: Lint
uses: golangci/[email protected]
with:
version: latest
- name: Format check
run: go fmt ./...
- name: Static analysis
run: go vet ./...