Kubernetes Operator that creates Service Endpoints from Secrets
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove test workflow

-23
-23
.tangled/workflows/tests.yml
··· 1 - when: 2 - - event: ["push"] 3 - branch: ["*"] 4 - - event: ["pull_request"] 5 - branch: ["main"] 6 - 7 - engine: kubernetes 8 - image: golang:1.22-bookworm 9 - architecture: amd64 10 - 11 - steps: 12 - - name: Download dependencies 13 - environment: 14 - CGO_ENABLED: "0" 15 - command: | 16 - go mod download 17 - go install sigs.k8s.io/controller-runtime/tools/setup-envtest@release-0.19 18 - 19 - - name: Run Tests 20 - environment: 21 - CGO_ENABLED: "0" 22 - command: | 23 - KUBEBUILDER_ASSETS="$(setup-envtest use 1.31.0 -p path)" go test $(go list ./... | grep -v /e2e) -cover