Makefile: add easy target for validation

Hopefully soon adding integration tests for the cli

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-11-05 12:43:00 -04:00
parent 4f26a7e254
commit 85eacd2163
Signed by: vbatts
GPG Key ID: 10937E57733F1362
1 changed files with 35 additions and 0 deletions

35
Makefile Normal file
View File

@ -0,0 +1,35 @@
SOURCE_FILES := $(shell find . -type f -name "*.go")
default: validation build
.PHONY: validation
validation: test lint vet
.PHONY: test
test: .test
.test: $(SOURCE_FILES)
go test -v ./... && touch $@
.PHONY: lint
lint: .lint
.lint: $(SOURCE_FILES)
golint -set_exit_status ./... && touch $@
.PHONY: vet
vet: .vet
.vet: $(SOURCE_FILES)
go vet ./... && touch $@
.PHONY: build
build: gomtree
gomtree: $(SOURCE_FILES)
go build ./cmd/gomtree
clean:
rm -rf gomtree