CI: fix Go agent test by ensuring go mod tidy runs correctly
Some checks failed
CI — P2 Drift (Go + Node) / saas (push) Successful in 30s
CI — P2 Drift (Go + Node) / agent (push) Failing after 51m11s

This commit is contained in:
2026-03-01 07:07:02 +00:00
parent 1bafad5a86
commit 5346e88331
2 changed files with 1 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ jobs:
- name: Test agent
run: |
export PATH="/usr/local/go/bin:$HOME/go/bin:$PATH"
cd $GITHUB_WORKSPACE/products/02-iac-drift-detection/agent && go mod tidy && go test ./...
cd $GITHUB_WORKSPACE/products/02-iac-drift-detection/agent && go mod download && go mod tidy && go test ./...
- name: Vet
run: |