Skip to content

Send traffic to the arm64 pods from one Service #407

Send traffic to the arm64 pods from one Service

Send traffic to the arm64 pods from one Service #407

on:
pull_request:
push:
name: Unit tests Charts
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.18.4
- name: Update chart dependencies
run: |
for chart in charts/*/; do
if [ -f "$chart/Chart.yaml" ] && grep -q "dependencies:" "$chart/Chart.yaml"; then
echo "Updating dependencies for $chart"
helm dependency update "$chart"
fi
done
- name: Run unit tests
uses: d3adb5/helm-unittest-action@v2
with:
helm-version: v3.18.4