From ce940a8d39600ef7c9fa790275eb64e1159694c2 Mon Sep 17 00:00:00 2001 From: Damir Mukimov Date: Wed, 24 Dec 2025 23:17:39 +0100 Subject: [PATCH] fix: Remove diagnostic go list commands that are causing failures - Remove go list -m and go list ./pkg/config diagnostic commands - These were added for debugging but are causing CI failures - go vet will catch the actual issues we need to fix --- .gitea/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6247cf6..b0669e8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -82,8 +82,6 @@ jobs: run: | go mod tidy go mod verify - go list -m - go list ./pkg/config || echo "Warning: pkg/config not found, but continuing..." go vet ./... - name: Test working-directory: bugulma/backend