diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-25 17:01:35 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-25 17:01:35 +0200 |
| commit | feabdb0cd8ce8c0b52711b416ce986f7a19e26ee (patch) | |
| tree | 8737fdecab435cfac8be0735cf361f16dbf0f335 /.github | |
| parent | 45661350a0bfd2238727fae4540a1be824dd8a62 (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.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
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: |
