Files
go-semrel-provider/Makefile
Izrafil Archimedes fccdc61545 init
2026-02-23 09:20:56 +01:00

13 lines
259 B
Makefile

all: build
.PHONY: build
build:
go build -o build/provider-zexlab ./cmd/provider-zexlab/
lint:
golangci-lint run --fix ./cmd/... ./pkg/...
test:
go test --coverprofile coverage.out -json -v -parallel 20 ./pkg/... 2>&1 | tee /tmp/gotest.log | gotestfmt