Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrizio Sestito <[email protected]>
  • Loading branch information
fabriziosestito committed Sep 18, 2024
1 parent 8783fac commit 21773ee
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@ jobs:
run: helm plugin install https://github.com/helm-unittest/helm-unittest
- name: Assemble list of chart directories to test
run: |
tr ' ' '\n' <<< "${{ inputs.charts }}" | grep -v '^$' > charts-to-test || true
find . -type f -name 'Chart.yaml' -exec dirname {} \; > all-charts
[ -z "${{ inputs.charts }}" ] && mv all-charts charts-to-test || true
find . -type f -name 'Chart.yaml' -exec dirname {} \; > charts-to-test
shell: bash
- name: Fetch chart dependencies
run: |
for chart in $(cat charts-to-test); do
helm dependency update "$chart" >/dev/null
helm dependency update "$chart"
done
shell: bash
- name: Run unit tests
Expand Down

0 comments on commit 21773ee

Please sign in to comment.