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