blob: 7ce9d40a87b99e577214c8ebe785ced52037d3a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|