diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -15,10 +15,15 @@ setup: build: sparkled -test: +test-unit: @go clean -testcache @go test -shuffle=on ./... +test-integration: build-image + @go test -tags=integration ./test/integration/... + +test: test-unit test-integration + build-image: @docker build --tag $(IMAGE_TAG) . |
