Files
2024-01-20 10:24:21 +01:00

13 lines
147 B
Makefile

.PHONY: test all build
# default task invoked while running make
all: build
export CGO_ENABLED=0
build:
go build -v .
test:
go test -v ./...