Skip to content

feat: add support for all retrievers in cli #10372

feat: add support for all retrievers in cli

feat: add support for all retrievers in cli #10372

Workflow file for this run

name: Helm Lint and Test Charts
on: pull_request
permissions: read-all
jobs:
lint-helm-chart:
name: Lint Helm Chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 100
- name: Set up Helm
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
with:
version: v3.11.1
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: "3.9"
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@0d28d3144d3a25ea2cc349d6e59901c4ff469b3b # v2.7.0
- name: Get changed files in the docs folder
id: changed-files-specific
uses: marceloprado/has-changed-path@df1b7a3161b8fb9fd8c90403c66a9e66dfde50cb # v1.0.1
with:
paths: ./cmd/relayproxy/helm-charts/
- name: Run chart-testing (lint)
working-directory: ./cmd/relayproxy/helm-charts/relay-proxy/
run: ct lint --chart-dirs . --charts .
- name: Create kind cluster
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 #v1.12.0
if: steps.changed-files-specific.outputs.changed == 'true'
- name: Run chart-testing (install)
working-directory: ./cmd/relayproxy/helm-charts/relay-proxy/
run: ct install --chart-dirs . --charts .
if: steps.changed-files-specific.outputs.changed == 'true'