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 3b58280 commit 776e36eCopy full SHA for 776e36e
.github/workflows/golangci-lint.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
8
9
+
10
+permissions:
11
+ contents: read
12
+ # Optional: allow read access to pull request. Use with `only-new-issues` option.
13
+ # pull-requests: read
14
15
+jobs:
16
+ golangci:
17
+ name: lint
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - uses: actions/setup-go@v5
22
+ with:
23
+ go-version: stable
24
+ - name: golangci-lint
25
+ uses: golangci/golangci-lint-action@v6
26
27
+ version: v1.61.0
0 commit comments