Bump golangci/golangci-lint-action from 3.1.0 to 6.1.1 #141
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: Pull Request | |
on: | |
push: | |
paths-ignore: | |
- README.md | |
- .gitignore | |
tags: | |
- v* | |
branches: | |
- master | |
- development | |
pull_request: | |
jobs: | |
checks: | |
name: Pull Request Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.13 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: GolangCI-Lint | |
uses: golangci/golangci-lint-action@v6.1.1 | |
with: | |
version: v1.29 | |
- name: Run tests | |
run: go test . | |
- name: Compile the project | |
run: go build |