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 c9c4fec commit 54c3ee4Copy full SHA for 54c3ee4
.github/workflows/lint.yml
@@ -0,0 +1,38 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ pull_request_target:
6
7
+jobs:
8
+ gobuild:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/setup-go@v5
12
+ with:
13
+ go-version: 1.18
14
+ - uses: actions/checkout@v4
15
+ - name: go build
16
+ run: go build -v ./...
17
18
+ gotest:
19
20
21
22
23
24
25
26
+ run: go test -v ./...
27
28
+ golangci:
29
30
31
32
33
34
35
+ - name: golangci-lint
36
+ uses: golangci/golangci-lint-action@v6
37
38
+ version: latest
0 commit comments