Skip to content

Implement helm/chart-testing lint CI and cleanup files #2

Implement helm/chart-testing lint CI and cleanup files

Implement helm/chart-testing lint CI and cleanup files #2

Workflow file for this run

name: Lint all charts
on: [ pull_request, push ]
jobs:
lint-test:
runs-on: ubuntu-latest
env:
chart_configuration: --charts rmf-deployment/
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.11.2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
- name: Run chart-testing (lint)
run: ct lint ${chart_configuration}