Update tag 95e39a946a8b37004e00d30ad02ccb330fecbe4b #607
Workflow file for this run
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: check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
yamllint: | |
name: yamllint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup | |
run: | | |
sudo apt-get install yamllint | |
- name: run | |
run: | | |
make yamllint | |
helmlint: | |
name: helmlint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: azure/setup-helm@v3 | |
with: | |
version: "v3.9.2" | |
- name: run | |
run: | | |
make helmlint | |
kustomizebuild: | |
name: kustomizebuild | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup | |
env: | |
KUSTOMIZE_VERSION: "4.5.5" | |
run: | | |
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -s $KUSTOMIZE_VERSION | |
kustomize version | |
- name: run | |
run: | | |
make kustomizebuild |