From f984198d4ded2064ee706b7bc0dfffca479fb312 Mon Sep 17 00:00:00 2001 From: logikonline Date: Sun, 25 Jan 2026 12:23:12 -0500 Subject: [PATCH] ci(deps): add explicit dependency download step Download Go modules before running vet to ensure all dependencies are available, especially private modules from git.marketally.com --- .gitea/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 68e8cb5..26ce672 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -17,6 +17,11 @@ jobs: go-version-file: 'go.mod' cache: false + - name: Download dependencies + run: go mod download + env: + GOPRIVATE: git.marketally.com + - name: Vet run: make vet env: