wormhole-explorer/influx-backfiller/Makefile

12 lines
143 B
Makefile

SHELL := /bin/bash
build:
CGO_ENABLED=0 GOOS=linux go build -o ./bin/influx-backfiller
test:
go test -v -cover ./...
.PHONY: build test