wormhole-explorer/pipeline/Makefile

10 lines
146 B
Makefile

SHELL := /bin/bash
build:
CGO_ENABLED=0 GOOS=linux go build -o "./bin/pipeline" cmd/main.go
test:
go test -v -cover ./...
.PHONY: build test