b1f8ac453b
feat!: base template * first bit of templating * codeowners * linuxbased * restart * baseline project * add grpc api and basic integration test * startqueue * queueMsg * splitscripts * migrations * queueintegrationtest * gateway
13 lines
157 B
Makefile
13 lines
157 B
Makefile
SHELL = bash
|
|
|
|
default: test
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "--> Running Tests ..."
|
|
@go test -v -race ./...
|
|
|
|
vet:
|
|
@echo "--> Vet Go sources ..."
|
|
@go vet ./...
|