Skip to content

chore: add ci to test deploy with helm #1

chore: add ci to test deploy with helm

chore: add ci to test deploy with helm #1

Workflow file for this run

# validate any chart changes under charts directory
name: Chart Test
env:
HELM_VERSION: v3.17.3
on:
push:
# Exclude branches created by Dependabot to avoid triggering current workflow
# for PRs initiated by Dependabot.
branches-ignore:
- 'dependabot/**'
pull_request:
# paths:
# - "charts/**"
permissions:
contents: read
jobs:
chart-lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: ${{ env.HELM_VERSION }}
- name: Run test-deploy-with-helm
run: |
make test-deploy-with-helm