We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7cecde commit a22a894Copy full SHA for a22a894
.github/workflows/test.yml
@@ -9,6 +9,15 @@ on:
9
pull_request:
10
11
jobs:
12
+
13
+ lint:
14
+ runs-on: ubuntu-20.04
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: golangci/golangci-lint-action@v2
18
+ with:
19
+ version: v1.42
20
21
test:
22
runs-on: ubuntu-20.04
23
strategy:
.golangci.yml
@@ -0,0 +1,5 @@
1
+# For documentation, see https://golangci-lint.run/usage/configuration/
2
3
+linters:
4
+ disable:
5
+ - errcheck
0 commit comments