Files
realDynDNS/Makefile
Timo Behrendt ef57421268
All checks were successful
CD / test (push) Successful in 20s
CD / Build and push (push) Successful in 2m41s
ci: check format in CI pipeline (#17)
Reviewed-on: #17
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2024-12-23 19:37:47 +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