Various linter updates #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adapted from https://github.com/golangci/golangci-lint-action/blob/b56f6f529003f1c81d4d759be6bd5f10bf9a0fa0/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/checkout@v4 | |
- 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" | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
# NOTE: Keep this in sync with the version from .golangci.yml | |
version: "v1.54.2" |