Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.19.1 to 2.20.0. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.19.1...v2.20.0) --- 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>
16 lines
248 B
Makefile
16 lines
248 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 -randomize-all -keep-going
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
go vet ./...
|
|
|
|
.PHONY: update-deps
|
|
update-deps:
|
|
go get -u ./...
|
|
go mod tidy
|