birthdaybot/Makefile
2023-06-30 10:42:27 +02:00

12 lines
206 B
Makefile

build:
mkdir -p dist
go build -o dist ./...
test:
GOTESTSUM_FORMAT=testname gotestsum --packages="./..."
test-watch:
GOTESTSUM_FORMAT=testname gotestsum --packages="./..." --watch
fmt:
go fmt ./...