mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-04 17:51:03 +00:00
14 lines
353 B
Makefile
14 lines
353 B
Makefile
all:
|
|
cd cmd; \
|
|
go build -o ../signaller;
|
|
|
|
install:
|
|
go install github.com/nxshock/signaller/cmd
|
|
update-deps:
|
|
go mod tidy
|
|
test: update-deps
|
|
go get golang.org/x/tools/cmd/cover
|
|
go get github.com/mattn/goveralls
|
|
go test ./... -v -covermode=count -coverprofile=coverage.out
|
|
$(HOME)/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
|