We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41fb318 commit a08f52cCopy full SHA for a08f52c
2 files changed
.github/workflows/ci.yaml
@@ -134,8 +134,10 @@ jobs:
134
path: ${{ needs.preflight.outputs.gopath }}/pkg/mod
135
key: ${{ needs.preflight.outputs.go-mods-cache-key }}
136
fail-on-cache-miss: true
137
- - name: Linting
138
- run: mise vet staticcheck
+ - name: go vet
+ run: mise vet
139
+ - name: Running staticcheck
140
+ run: mise staticcheck
141
- name: Running vulncheck
142
run: mise vuln
143
mise.toml
@@ -18,4 +18,4 @@ vet = "go vet ./..."
18
static = "staticcheck -checks=all ./..."
19
vuln = "govulncheck ./..."
20
fmt = "go fmt ./... && goimports -l -w ."
21
-has-changes = "git diff --exit-code --quiet HEAD --"
+has-changes = "git diff --exit-code --quiet HEAD --"
0 commit comments