summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-25 17:01:35 +0200
committerPaul Buetow <paul@buetow.org>2026-03-25 17:01:35 +0200
commitfeabdb0cd8ce8c0b52711b416ce986f7a19e26ee (patch)
tree8737fdecab435cfac8be0735cf361f16dbf0f335
parent45661350a0bfd2238727fae4540a1be824dd8a62 (diff)
ci: Add go vet step to CI workflow
- Updated .github/workflows/ci.yml to include 'go vet ./...' after tests - go vet passes without errors on current codebase The CI now includes static analysis checks via go vet to catch potential issues.
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8fd0031..289a990 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -26,6 +26,9 @@ jobs:
exit 1
fi
+ - name: Run go vet
+ run: go vet ./...
+
- name: Upload coverage to GitHub
uses: actions/upload-artifact@v4
with: