Skip to content

Bump golangci/golangci-lint-action from 5 to 6 in the dependencies group #67

Bump golangci/golangci-lint-action from 5 to 6 in the dependencies group

Bump golangci/golangci-lint-action from 5 to 6 in the dependencies group #67

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: Lint
uses: golangci/golangci-lint-action@v6
- name: Build
run: go build -v ./...
- name: Vet
run: go vet -v ./...
- name: Test
run: go test -v ./...