2021-09-10 07:30:18 -07:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "go.sum"
|
|
|
|
- "go.mod"
|
|
|
|
- "**.go"
|
|
|
|
- "scripts/errcheck_excludes.txt"
|
|
|
|
- ".github/workflows/golangci-lint.yml"
|
2021-10-22 15:45:29 -07:00
|
|
|
- ".golangci.yml"
|
2021-09-10 07:30:18 -07:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-03 06:59:07 -08:00
|
|
|
uses: actions/checkout@v3
|
2022-03-10 08:36:30 -08:00
|
|
|
- name: install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.17.x
|
2021-09-10 07:30:18 -07:00
|
|
|
- name: Lint
|
2022-03-10 08:36:30 -08:00
|
|
|
uses: golangci/golangci-lint-action@v3.1.0
|
2021-09-10 07:30:18 -07:00
|
|
|
with:
|
2022-03-03 08:21:05 -08:00
|
|
|
version: v1.44.2
|