Skip to content

Bump golangci/golangci-lint-action from 3 to 4 #8

Bump golangci/golangci-lint-action from 3 to 4

Bump golangci/golangci-lint-action from 3 to 4 #8

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Vet
run: go vet ./...
- name: Lint
uses: golangci/golangci-lint-action@v4
- name: Test
run: go test -race -timeout 30s ./...