Mumble Test Version #8
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: Lint and Test Charts | |
on: pull_request | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Run chart-testing (lint) | |
id: lint | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
env: | |
default_branch: ${{ github.event.repository.default_branch }} | |
run: | | |
changed=$(ct list-changed --target-branch "$default_branch") | |
if [ -n "$changed" ]; then | |
echo "changed=true" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Run chart-testing (lint) | |
if: steps.list-changed.outputs.changed == 'true' | |
env: | |
default_branch: ${{ github.event.repository.default_branch }} | |
run: ct lint --target-branch "$default_branch" | |
- name: Download kubeconform | |
run: | | |
go install github.com/yannh/kubeconform/cmd/kubeconform@latest | |
echo $(go env GOPATH)/bin >> "$GITHUB_PATH" | |
- name: Validate kubernetes objects | |
run: | | |
./.github/validate-kube.sh |