compose/ecs/Makefile
Guillaume Lours 6febf68748
Add e2e tests for plugin behavior and commands
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2020-08-17 21:25:47 +02:00

16 lines
321 B
Makefile

clean:
rm -rf dist/
build:
go build -v -o dist/docker-ecs cmd/main/main.go
test: build ## Run tests
go test ./... -v
dev: build
ln -f -s "${PWD}/dist/docker-ecs" "${HOME}/.docker/cli-plugins/docker-ecs"
lint: ## Verify Go files
golangci-lint run --config ./golangci.yaml ./...
.PHONY: clean build test dev lint