1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2024-09-28 04:59:47 +00:00

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

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