Kustomize Build Check #226
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kustomize Build Check | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
kustomize-lint: | |
runs-on: ubuntu-latest | |
env: | |
KUSTOMIZE_VERSION: 3.9.4 | |
steps: | |
- name: Install Kustomize | |
# yamllint disable rule:line-length | |
run: | | |
sudo curl -L -o /usr/bin/kustomize https://github.com/kubernetes-sigs/kustomize/releases/download/v${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_linux_amd64 | |
sudo chmod +x /usr/bin/kustomize | |
# yamllint enable rule:line-length | |
- name: Code Checkout | |
uses: actions/checkout@v2 | |
- name: Validate Manifests | |
run: ./hack/validate_manifests.sh |