We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10af11d commit b467291Copy full SHA for b467291
Makefile
@@ -114,10 +114,12 @@ vet: ## Run go vet against code.
114
115
.PHONY: mod.check
116
mod.check:#check go module dependencies
117
+ @echo 'running "go mod vendor"'
118
+ @go mod vendor
119
@echo 'running "go mod verify"'
120
@go mod verify
121
@echo 'checking for modified files.'
- # fail in case there are uncommitted changes
122
+ # fail in case there are uncommitted changes
123
@ git diff --quiet || (echo "files were modified: " ; git status --porcelain ; false)
124
125
.PHONY: test
0 commit comments