fix helm dep
This commit is contained in:
15
.github/workflows/go-test.yaml
vendored
15
.github/workflows/go-test.yaml
vendored
@@ -14,11 +14,20 @@ jobs:
|
|||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
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
|
- name: Launch Test
|
||||||
run: |
|
run: |
|
||||||
go mod tidy
|
go vet ./...
|
||||||
go vet ./... && go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
|
go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: tests-results
|
name: tests-results
|
||||||
|
Reference in New Issue
Block a user