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

@ -9,6 +9,22 @@ permissions:
contents: read
jobs:
uncommitted-code-check:
name: uncommitted-code-check
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Check generated deploy code
run: make generate-deploy
- name: Check for uncommitted changes
run: make check-all-committed
- name: Show the uncommitted "git diff"
if: ${{ failure() }}
run: git diff ; false
e2e-build-test:
name: e2e-build-test
runs-on: ubuntu-latest