From 03eb4f08a60a4e984189c26a0dd06ae07859d9f7 Mon Sep 17 00:00:00 2001 From: Damir Mukimov Date: Wed, 24 Dec 2025 23:09:53 +0100 Subject: [PATCH] fix: Add go build before vet to ensure module is recognized - Run go build before go vet to ensure Go recognizes the module structure - This should fix the 'package not in std' error by initializing the module properly --- .gitea/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b256a6c..9ac8944 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -77,6 +77,8 @@ jobs: working-directory: bugulma/backend run: | go mod tidy + go mod verify + go build ./... || true go vet ./... - name: Test working-directory: bugulma/backend