We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14d38a6 commit c35da39Copy full SHA for c35da39
.github/workflows/build.yml
@@ -22,4 +22,17 @@ jobs:
22
- name: Build
23
run: go build -v ./...
24
- name: Test
25
- run: gotestsum --format testname -- -v ./...
+ run: gotestsum --format testname -- -v ./...
26
+
27
+ lint:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+ - name: Set up Go
32
+ uses: actions/setup-go@v6
33
+ with:
34
+ go-version-file: './go.mod'
35
+ - name: Install staticcheck
36
+ run: go install honnef.co/go/tools/cmd/staticcheck@latest
37
+ - name: Run staticcheck
38
+ run: staticcheck ./...
0 commit comments