Skip to content

Commit d4c50ad

Browse files
authored
Update code-quality.yaml to include kustomize check within code-quality github action (#622)
* Update code-quality.yaml to include kustomize check within code-quality check github action * Update code-quality.yaml so kustomize check is its own job within the githhub action
1 parent 0247e40 commit d4c50ad

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/code-quality.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,14 @@ jobs:
112112
git diff
113113
exit 1
114114
fi
115+
116+
code-static-analysis:
117+
runs-on: ubuntu-latest
118+
steps:
119+
- uses: actions/checkout@v4
120+
121+
# This simply checks that the manifests and respective kustomization.yaml finishes without an error.
122+
- name: Check kustomize manifest
123+
id: kustomize-manifests
124+
run: |
125+
./ci/kustomize.sh

0 commit comments

Comments
 (0)