Skip to content

Commit

Permalink
change the github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Neha Dixit authored and Neha Dixit committed Jun 2, 2024
1 parent 829c341 commit b982b1a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/lint_and_test_chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Lint and Test Charts

on: push

jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.10.0

- uses: actions/setup-python@v4
with:
python-version: '3.9'
check-latest: true

- name: Set up chart-testing
uses: helm/[email protected]

- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch main)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint --target-branch main

- name: Create kind cluster
uses: helm/[email protected]
if: steps.list-changed.outputs.changed == 'true'

- name: Run chart-testing (install)
run: ct install --target-branch main
if: steps.list-changed.outputs.changed == 'true'

0 comments on commit b982b1a

Please sign in to comment.