Skip to content

GoLang Linting

GoLang Linting #1

Workflow file for this run

---
name: GoLang Linting
permissions:
contents: read
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '.github/workflows/golint.yaml'
- 'vendor/**'
- '**.go'
concurrency:
group: 'golint-${{ github.head_ref }}'
cancel-in-progress: true
jobs:
golint:
runs-on: [custom, linux, large]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: ./.go-version
- uses: golangci/golangci-lint-action@v3
with:
version: 'v1.50.1'
args: -v