ref: d119343e8e7c83a56f87b05249ff0094aa2298a5
parent: 9fd0c32d84972ba78323be1e5da293c23e08b33f
author: Runxi Yu <me@runxiyu.org>
date: Sun Nov 23 03:00:00 EST 2025
.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.
--- a/.build.yml
+++ b/.build.yml
@@ -24,3 +24,6 @@
- lint: |
cd furgit
golangci-lint run ./...
+ - vet: |
+ cd furgit
+ go vet ./...
--
⑨