We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 502da2b commit 8134334Copy full SHA for 8134334
.github/workflows/go.yml
@@ -25,9 +25,3 @@ jobs:
25
26
- name: Build
27
run: go build -v
28
-
29
- - name: golangci-lint
30
- uses: golangci/golangci-lint-action@v2
31
- with:
32
- version: v1.29
33
- skip-go-installation: true
.github/workflows/golint.yml
@@ -0,0 +1,19 @@
1
+name: golangci-lint
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ golangci:
12
+ name: lint
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: golangci-lint
17
+ uses: golangci/golangci-lint-action@v2
18
+ with:
19
+ version: v1.29
0 commit comments