updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
158 B
Makefile
12 lines
158 B
Makefile
# default task since it's first
|
|
.PHONY: all
|
|
all: vet test
|
|
|
|
.PHONY: test
|
|
test:
|
|
go run github.com/onsi/ginkgo/v2/ginkgo -r -p
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
go vet ./...
|