goplaces/Makefile
2026-01-02 20:10:00 +01:00

19 lines
253 B
Makefile

.PHONY: lint test coverage
.PHONY: e2e goplaces
lint:
golangci-lint fmt
golangci-lint run ./...
test:
go test ./...
coverage:
./scripts/check-coverage.sh
e2e:
go test -tags=e2e ./... -run TestE2E
goplaces:
go build -o goplaces ./cmd/goplaces