aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Runxi Yu2025-11-23 08:00:00 +0800
committerGravatar Runxi Yu2025-11-23 08:00:00 +0800
commitd119343e8e7c83a56f87b05249ff0094aa2298a5 (patch)
treec5dc92e2a34f2115d6c8c24c4fbd694cc126b4ea
parentadler32: Update assembly param names to pass go vet (diff)
signatureNo signature
.build.yml: Add go vet
It could detect mismatches between the Go function signature and asm; not super useful but good to have... not sure why golangci-lint's go vet doesn't do this.
-rw-r--r--.build.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
index cbac6add..e0bd8ad3 100644
--- a/.build.yml
+++ b/.build.yml
@@ -24,3 +24,6 @@ tasks:
- lint: |
cd furgit
golangci-lint run ./...
+ - vet: |
+ cd furgit
+ go vet ./...