Fixed path in GH workflow #3
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: Validation Actions | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
push: | |
branches: | |
- main | |
jobs: | |
formatting: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
ref: ${{ github.sha }} | |
- name: terraform fmt | |
uses: dflook/terraform-fmt-check@529e30563b2c558dc0b8c450b5cec1cc93bd7fe4 | |
with: | |
path: deploy/ | |
docs: | |
runs-on: ubuntu-22.04 | |
needs: formatting | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
ref: ${{ github.ref }} | |
- name: Render terraform docs inside the README.md and push changes back to PR branch | |
uses: terraform-docs/gh-actions@d1c99433f7a1e5003ef213d70f89aaa47cb0b675 | |
with: | |
working-dir: deploy/ | |
output-file: README.md | |
output-method: inject | |
output-format: markdown table | |
indention: 3 | |
git-push: "true" | |
validate-netpol-yamls: | |
runs-on: ubuntu-22.04 | |
needs: formatting | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Validate Network Policy YAML files | |
run: yamllint netpols/*/*.yaml | |
validate-cilium-valuesyaml: | |
runs-on: ubuntu-22.04 | |
needs: formatting | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Validate Cilium Helm values YAML file | |
run: yamllint deploy/03-cilium-values-1.14.yaml |