We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a6ee3 commit 9560cafCopy full SHA for 9560caf
.github/workflows/go.yml
@@ -25,6 +25,9 @@ jobs:
25
- name: Download dependencies
26
run: go mod download
27
28
+ - name: Lint code
29
+ run: script/lint
30
+
31
- name: Run unit tests
32
run: go test -race ./...
33
.github/workflows/lint.yaml
.golangci.yml
@@ -4,6 +4,8 @@ run:
4
timeout: 5m
5
tests: true
6
concurrency: 4
7
+ skip-dirs:
8
+ - "../../go/pkg/mod"
9
10
linters:
11
enable:
@@ -34,6 +36,17 @@ linters:
34
36
disabled: true
35
37
- name: package-comments
38
39
+ exclusions:
40
+ paths:
41
+ - vendor
42
+ - .git
43
+ - .vscode
44
+ - .idea
45
+ - .DS_Store
46
+ - go.sum
47
+ - go.mod
48
+ - LICENSE
49
+ - README.md
50
51
formatters:
52
0 commit comments