diff options
author | Raúl Benencia <raul@thousandeyes.com> | 2018-04-13 16:30:31 -0700 |
---|---|---|
committer | Raúl Benencia <raul@thousandeyes.com> | 2018-05-11 15:02:34 -0700 |
commit | 77c172b823b64ebface655681ab0749b9d2f7081 (patch) | |
tree | 09c13e626eb95ae1d33e76ed683172eab1ab6c96 /Makefile |
First public commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7ce9d40 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +GO = go +pkgs = $(shell $(GO) list ./... | grep -v /vendor/) + +all: + $(GO) build + +fmt: + $(GO) fmt + +clean: + rm -f shoelaces + +test: fmt + $(GO) test -v $(pkgs) && \ + ./test/integ-test/integ_test.py |