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 ea1c47b commit fde4950Copy full SHA for fde4950
.github/workflows/golangci-lint.yml
@@ -0,0 +1,25 @@
1
+name: golangci-lint
2
+on:
3
+ push:
4
+ branches: [ master ]
5
+ pull_request:
6
7
+
8
+permissions:
9
+ contents: read
10
+ pull-requests: read
11
12
+jobs:
13
+ golangci:
14
+ name: lint
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/setup-go@v3
18
+ with:
19
+ go-version: 1.19
20
+ - uses: actions/checkout@v3
21
+ - name: golangci-lint
22
+ uses: golangci/golangci-lint-action@v3
23
24
+ version: latest
25
+ only-new-issues: true # on PRs, only show new issues
.github/workflows/test.yml
@@ -25,7 +25,7 @@ jobs:
run: make
26
27
- name: Test
28
- run: make check
+ run: make check SKIP_STATIC_CHECK=true
29
30
- name: Translate coverage report
31
uses: jandelgado/[email protected]
0 commit comments