ci: add help check

This commit is contained in:
Alexander Courtis
2023-12-31 17:27:49 +11:00
parent eb9f7cd654
commit e1fae6906e
4 changed files with 17 additions and 6 deletions

View File

@@ -22,8 +22,15 @@ style-fix:
#
# utility
#
update-help:
scripts/update-help.sh
help-update:
scripts/help-update.sh
.PHONY: all style lint check style-fix update-help
#
# CI
#
help-check:
scripts/help-update.sh
git diff --exit-code doc/nvim-tree-lua.txt
.PHONY: all style lint check style-fix help-check help-update