From 59f95d6f98e07ebcafb0ae55d1eef3c4a733ed7b Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 2 Oct 2025 14:44:10 +0200 Subject: [PATCH] ci: add bash-completion consistency check to CODECHECK Add 'make checkcompletion' to the GitHub CI CODECHECK phase to verify bash-completion files consistency for all future pull requests. This ensures that all user-facing programs have proper bash-completion scripts registered in both autotools and meson build systems. Signed-off-by: Karel Zak --- .github/workflows/cibuild.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cibuild.sh b/.github/workflows/cibuild.sh index 895d9135a..be544cf92 100755 --- a/.github/workflows/cibuild.sh +++ b/.github/workflows/cibuild.sh @@ -149,6 +149,7 @@ for phase in "${PHASES[@]}"; do CODECHECK) make checklibdoc make checkxalloc + make checkcompletion ;; CHECK) if [[ "$SANITIZE" == "yes" ]]; then -- 2.47.3