We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eae8078 commit a3f2b88Copy full SHA for a3f2b88
1 file changed
.github/workflows/atomiccache-test.yml
@@ -24,15 +24,14 @@ jobs:
24
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
25
restore-keys: |
26
${{ runner.os }}-go-
27
- - name: Install staticcheck
28
- run: go install honnef.co/go/tools/cmd/staticcheck@latest
29
- name: Vet
30
run: go vet ./...
31
- name: Test
32
run: go test ./...
33
- name: Test (race detector)
34
if: matrix.os == 'ubuntu-latest'
35
run: go test -race ./...
36
- - name: Staticcheck test
37
- run: staticcheck ./...
+ - uses: dominikh/staticcheck-action@v1.3.01
+ with:
+ version: "2022.1.1"
38
0 commit comments