copy-template:
	cp ../CiEnvironments.json CiEnvironments.json

test: copy-template
	@echo "running all tests"
	@go install ./...
	@go fmt ./...
	@go run honnef.co/go/tools/cmd/staticcheck@v0.3.2 github.com/cucumber/ci-environment/go
	go vet ./...
	go test ./...
