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 e94bd99 commit 935cd97Copy full SHA for 935cd97
.github/workflows/linting.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: "fmt"
24
run: if [ "$(go fmt ./... | wc -l)" -gt 0 ]; then echo "go fmt failed, please run again locally"; exit 1; fi
25
- name: "imports"
26
- run: "go install honnef.co/go/tools/cmd/staticcheck@latest"
+ run: "go install golang.org/x/tools/cmd/goimports@latest"
27
run: if [ "$(goimports -l . | wc -l)" -gt 0 ]; then echo "goimports failed, please run again locally"; exit 1; fi
28
- name: "vet"
29
run: "go vet ./..."
0 commit comments