mirror of
https://github.com/int128/kubelogin.git
synced 2026-02-14 08:29:51 +00:00
* chore(deps): update module github.com/vektra/mockery/v2 to v3 * Update config --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Hidetake Iwata <int128@gmail.com>
21 lines
307 B
Makefile
21 lines
307 B
Makefile
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v -race ./pkg/...
|
|
|
|
.PHONY: integration-test
|
|
integration-test:
|
|
go test -v -race ./integration_test/...
|
|
|
|
.PHONY: generate
|
|
generate:
|
|
go tool github.com/google/wire/cmd/wire ./pkg/di
|
|
rm -fr mocks/
|
|
go tool mockery
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
go tool golangci-lint run
|