ci: Bump golangci/golangci-lint-action from 5.1.0 to 6.0.1 #173
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
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
- v* | |
pull_request: | |
branches: | |
- master | |
- v* | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: ["1.15", "1.19", "1.20"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b | |
- name: Run static checks | |
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 | |
with: | |
version: v1.51.1 | |
# use our .golangci.yml and configure output to be logged in the GHA, in addition to annotating the commit. | |
# see https://github.com/golangci/golangci-lint-action/issues/119#issuecomment-981090648 for output | |
args: --config=.golangci.yml --verbose --out-${NO_FUTURE}format colored-line-number --timeout 5m | |
skip-cache: true | |
- name: Build | |
run: go build | |
- name: Run unit tests | |
run: go test -v -race -cover |