From cb5a172f88011b5674ec667969e45c7f3fe23a6d Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Thu, 7 Oct 2021 15:02:20 +0200 Subject: [PATCH] chore: add documentation functions to makefile (#235) --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ee8ce53..4c6c0bca 100644 --- a/Makefile +++ b/Makefile @@ -53,4 +53,10 @@ code-coverage: unit-tests composer global require php-coveralls/php-coveralls php-coveralls -x tests/logs/clover.xml -o tests/logs/coveralls-upload.json -v -check: coding-standard-check static-analysis security-analysis unit-tests ## run quick checks for local development iterations +docs-generate: ## regenerate docs + php docs/documenter.php + +docs-check: ## checks if docs are up to date + php docs/documenter.php check + +check: coding-standard-check static-analysis security-analysis unit-tests docs-check ## run quick checks for local development iterations