fix helm dep
Some checks failed
Go-Tests / tests (push) Failing after 2m29s
Go-Tests / sonar (push) Has been skipped

This commit is contained in:
2025-08-19 16:03:47 +02:00
parent c86b2a5729
commit 323b6e651c

View File

@@ -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