birthdaybot/Makefile
2023-07-10 12:29:25 +02:00

18 lines
295 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 ./...
run:
go run ./cmd/birthdaybot -config example-config.yml
generate:
go generate ./...