mirror of
https://github.com/cbednarski/hostess
synced 2024-11-10 01:10:59 +00:00
10 lines
197 B
Makefile
10 lines
197 B
Makefile
build:
|
|
go build hostess.go
|
|
go build cmd/main.go
|
|
|
|
test: build
|
|
go test -coverprofile=coverage.out
|
|
go tool cover -html=coverage.out -o coverage.html
|
|
|
|
install: build test
|
|
cp main /usr/sbin/hostess
|