ci: add test for uncommitted changes in deploy directory

added test for uncommitted changes in deploy directory under go-test GH action.
Also, created a new make target named `make check-deploy-committed` that
can be used to verify the uncommitted changes.

Signed-off-by: Nikhil-Ladha <nikhilladha1999@gmail.com>
This commit is contained in:
Nikhil-Ladha
2024-08-13 12:29:40 +05:30
committed by mergify[bot]
parent e150fd986b
commit 71cbf3d7eb
3 changed files with 24 additions and 0 deletions

View File

@ -184,6 +184,10 @@ generate-deploy:
go mod vendor
$(MAKE) -C deploy
.PHONY: check-all-committed
check-all-committed: ## Fail in case there are uncommitted changes
test -z "$(shell git status --short)" || (echo "files were modified: " ; git status --short ; false)
#
# e2e testing by compiling e2e.test in case it does not exist and running the
# executable. The e2e.test executable is not checked as a dependency in the