summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/Makefile
blob: e4613390d546426f3bb34ddde587a55c5dd85de9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
vet:
	go vet ./...

lint:
	golint -set_exit_status ./...

test: vet lint
	go test -race -cover ./...

fmt:
	go fmt ./...