Skip to content

Bump golangci/golangci-lint-action from 3.1.0 to 6.1.1 #141

Bump golangci/golangci-lint-action from 3.1.0 to 6.1.1

Bump golangci/golangci-lint-action from 3.1.0 to 6.1.1 #141

Workflow file for this run

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