Setup unit tests (fix #13)

This commit is contained in:
Manfred Touron
2016-12-12 19:23:47 +01:00
parent 1146013b1f
commit 664498d53d
3 changed files with 25 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
.PHONY: build
build:
go build -o protoc-gen-gotemplate .
.PHONY: install
install:
go install .
.PHONY: test
test: build
cd examples/dummy && make