forked from LaconicNetwork/kompose
* Use go mod instead of glide * Add `--with-kompose-annotation` flag to allow us to switch it off for tests * Remove hostpid support (since the newest sdk does not support it) * Create new test script and fixtures * Remove replicationcontroller support
16 lines
158 B
Makefile
16 lines
158 B
Makefile
all: test lint style
|
|
|
|
setup:
|
|
go get -d -t -v ./...
|
|
|
|
test: setup
|
|
go test .
|
|
|
|
style: test
|
|
gofmt -w .
|
|
|
|
lint: test
|
|
golint ./...
|
|
|
|
.PHONY: test lint style setup
|