-
Notifications
You must be signed in to change notification settings - Fork 25
56 lines (51 loc) · 1.21 KB
/
golangci-lint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Go lint
on:
push:
branches:
- main
- release-*
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
branches:
- main
- release-*
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
- name: Go modules cache
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Check go.mod/go.sum to be consistent
run: go mod tidy -v && git diff --exit-code
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-cache: true
only-new-issues: false
args: --verbose