ci: check format in CI pipeline #17

Merged
t.behrendt merged 2 commits from style-formatting into main 2024-12-23 19:37:47 +01:00
2 changed files with 18 additions and 1 deletions
Showing only changes of commit ef83e73a43 - Show all commits

View File

@@ -40,3 +40,5 @@ jobs:
run: make build
- name: test
run: make test
- name: check:format
run: make check-format

View File

@@ -6,3 +6,18 @@ 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