We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 305abaf commit e6c52ffCopy full SHA for e6c52ff
.github/workflows/go.yml
@@ -21,8 +21,5 @@ jobs:
21
- name: Build
22
run: make
23
24
- - name: Lint
25
- run: make lint
26
-
27
- name: Test
28
run: make test
.github/workflows/golangci-lint.yml
@@ -0,0 +1,20 @@
1
+name: golangci-lint
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+permissions:
8
+ contents: read
9
+jobs:
10
+ golangci:
11
+ name: lint
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/setup-go@v2
15
+ - uses: actions/checkout@v2
16
+ - name: golangci-lint
17
+ uses: golangci/golangci-lint-action@v2
18
+ with:
19
+ # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
20
+ version: latest
0 commit comments