go-shout/Makefile

16 lines
178 B
Makefile

.PHONY: build test unit integration clean
build:
go build -o shout .
test: unit integration
unit:
go test ./...
integration: build
./shout test test/
clean:
rm -f shout