We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 727b7c4 commit 96bf933Copy full SHA for 96bf933
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,22 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ golangci:
11
+ name: Lint
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: golangci-lint
16
+ uses: golangci/golangci-lint-action@v2
17
+ with:
18
+ # Required: the version of golangci-lint is required and must
19
+ # be specified without a patch version:
20
+ # we always use the latest patch version.
21
+ version: v1.42
22
+ args: --timeout=10m
0 commit comments