Files
realDynDNS/Makefile
Timo Behrendt c450c2ced9
All checks were successful
CI / test (pull_request) Successful in 25s
Revert "choreL: update test tooling (#72)"
This reverts commit 2bfb4419d3.
2026-01-10 21:24:10 +01:00

24 lines
287 B
Makefile

test:
go test ./pkg/... -coverprofile=coverage.out
build:
go build
lint:
golint ./...
run:
make build
./realdyndns
format:
gofmt -w .
check-format:
@OUTPUT=$$(gofmt -l .); \
if [ -n "$$OUTPUT" ]; then \
echo "Formatter failed for:"; \
echo "$$OUTPUT"; \
exit 1; \
fi