From e52ab0e19afcbe84dc7270f0aaf44f60c3430c77 Mon Sep 17 00:00:00 2001 From: samuel Date: Thu, 11 May 2023 01:14:40 +0200 Subject: [PATCH] [Dev] Implement default targets for cicd --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Makefile b/Makefile index fe8d660..d4e433f 100644 --- a/Makefile +++ b/Makefile @@ -31,3 +31,15 @@ install: install -D --target-directory=$(DESTDIR)$(UNITDIR) systemd/netoik-api-server.service install -D --no-target-directory bin/server $(DESTDIR)$(BINDIR)/$(NAME)-server install --directory $(DESTDIR)$(VARDIR)/$(NAME)/captcha + +.PHONY: check_format +check_format: + @echo "Not implemented!" + +.PHONY: check_linting +check_linting: + @echo "Not implemented!" + +.PHONY: unit_test +unit_test: + @echo "Not implemented!"