update-go-mod/Makefile

14 lines
215 B
Makefile
Raw Normal View History

2022-07-22 14:07:02 +00:00
.PHONY: all test-color lint
2023-02-25 16:07:58 +00:00
all:
$(MAKE) test-color
$(MAKE) lint
2022-08-16 03:34:55 +00:00
go mod tidy
2022-07-22 14:07:02 +00:00
test-color:
go install github.com/haunt98/go-test-color@latest
go-test-color -race -failfast ./...
lint:
golangci-lint run ./...