2
0

ci(deps): add explicit dependency download step
Some checks failed
CI / build-and-test (push) Failing after 23s

Download Go modules before running vet to ensure all dependencies are available, especially private modules from git.marketally.com
This commit is contained in:
2026-01-25 12:23:12 -05:00
parent 607c332313
commit f984198d4d

View File

@@ -17,6 +17,11 @@ jobs:
go-version-file: 'go.mod' go-version-file: 'go.mod'
cache: false cache: false
- name: Download dependencies
run: go mod download
env:
GOPRIVATE: git.marketally.com
- name: Vet - name: Vet
run: make vet run: make vet
env: env: