Skip to content

Various linter updates #3

Various linter updates

Various linter updates #3

# Adapted from https://github.com/golangci/golangci-lint-action/blob/240da36b3d99a98659abd84016caead6c925650b/README.md#how-to-use
name: lint_golangci-lint
on:
push:
branches:
- master
- main
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
cache: false # setup-go v4 caches by default
# NOTE: Keep this in sync with the version from go.mod
go-version: '1.20.x'
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# NOTE: Keep this in sync with the version from .golangci.yml
version: 'v1.52.2'