From 3eb64338c9eb4025ee242e44fbb6b61cab6e7d82 Mon Sep 17 00:00:00 2001 From: thuanle Date: Tue, 28 Apr 2026 07:51:04 +0700 Subject: [PATCH] ci: add go vet job to PR workflow Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c5d28e4..cbd8459 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -27,3 +27,12 @@ jobs: with: go-version-file: go.mod - run: go test ./... + + vet: + runs-on: linux + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version-file: go.mod + - run: go vet ./...