From 323b6e651c05339c62d38616135007305f898e5d Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Tue, 19 Aug 2025 16:03:47 +0200 Subject: [PATCH] fix helm dep --- .github/workflows/go-test.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index 1b1f901..dd1103b 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -14,11 +14,20 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.24 + go-version: 1.25 + - name: Install helm + run: | + command -v helm || { + curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash + } + - name: Tidy + run: | + export GOPROXY='https://proxy.golang.org,direct' + go mod tidy - name: Launch Test run: | - go mod tidy - go vet ./... && go test -coverprofile=coverprofile.out -json -v ./... > gotest.json + go vet ./... + go test -coverprofile=coverprofile.out -json -v ./... > gotest.json - uses: actions/upload-artifact@v4 with: name: tests-results