birthdaybot/Makefile

13 lines
206 B
Makefile
Raw Normal View History

2023-06-30 09:42:27 +01:00
build:
mkdir -p dist
go build -o dist ./...
2023-06-29 22:46:17 +01:00
test:
GOTESTSUM_FORMAT=testname gotestsum --packages="./..."
test-watch:
GOTESTSUM_FORMAT=testname gotestsum --packages="./..." --watch
fmt:
go fmt ./...