From feabdb0cd8ce8c0b52711b416ce986f7a19e26ee Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 25 Mar 2026 17:01:35 +0200 Subject: 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. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) 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: -- cgit v1.2.3