policy-generator/Makefile
2025-01-02 11:37:20 +01:00

30 lines
432 B
Makefile

.DEFAULT_GOAL := all
# seems superfluous
#.PHONY: fmt vet build clean
tools:
GOPROXY=direct go install git.wamblee.org/public/gotools/cmd/go2junit@main
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
mkdir -p bin
go build -o bin ./cmd/...
install:
go install ./...
test: build
go test -count=1 -coverprofile=testout/coverage.out -json ${TESTFLAGS} ./... | go2junit testout
clean:
rm -rf bin
all: build