mirror of
https://github.com/datarhei/core.git
synced 2026-04-22 23:57:09 +08:00
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 ./...
|