We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cbceb commit c4f125cCopy full SHA for c4f125c
.github/workflows/go.yml
@@ -17,10 +17,10 @@ jobs:
17
env:
18
GOROOT: ""
19
with:
20
- target: code/compile
+ target: build
21
- name: Verify vendor directory
22
uses: ouzi-dev/[email protected]
23
24
25
26
- target: setup/mod/verify
+ target: verify
Makefile
@@ -101,6 +101,10 @@ fmt: ## Run go fmt against code.
101
vet: ## Run go vet against code.
102
go vet ./...
103
104
+verify:
105
+ go mod verify
106
+
107
108
.PHONY: test
109
test: manifests generate fmt vet envtest ## Run tests.
110
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test ./... -coverprofile cover.out
0 commit comments