From c32166ba4542229c6ac641e2fecdd0aa7d935987 Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Wed, 17 Aug 2022 18:38:35 +0200 Subject: [PATCH] chore(github): ensuring autogenerated crds docs is committed --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5e16532..17c51753 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,9 @@ jobs: - run: make installer - name: Checking if YAML installer file is not aligned run: if [[ $(git diff | wc -l) -gt 0 ]]; then echo ">>> Untracked generated files have not been committed" && git --no-pager diff && exit 1; fi + - run: make apidoc + - name: Checking if the CRDs documentation is not aligned + run: if [[ $(git diff | wc -l) -gt 0 ]]; then echo ">>> CRDs generated documentation have not been committed" && git --no-pager diff && exit 1; fi - name: Checking if YAML installer generated untracked files run: test -z "$(git ls-files --others --exclude-standard 2> /dev/null)" - name: Checking if source code is not formatted