Skip to content

Commit

Permalink
Try k3d cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
bonddim committed Sep 18, 2024
1 parent a47a0e7 commit 69f072f
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
with:
fetch-depth: 0

- name: Check docs
run: |
make helm-docs
if ! git diff --exit-code; then
echo "error::Documentation is not up to date. Please run helm-docs and commit changes."
exit 1
fi
# ct lint requires Python 3.x to run following packages:
# - yamale (https://github.com/23andMe/Yamale)
# - yamllint (https://github.com/adrienverge/yamllint)
Expand All @@ -36,18 +44,12 @@ jobs:
- name: Run chart-testing (lint)
run: ct lint --config ct.yaml

- name: Check docs
run: |
make helm-docs
if ! git diff --exit-code; then
echo "error::Documentation is not up to date. Please run helm-docs and commit changes."
exit 1
fi
- uses: helm/kind-action@v1
- uses: nolar/setup-k3d-k3s@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run chart-testing (install)
run: ct install --config ct.yaml --skip-clean-up
run: ct install --config ct.yaml

- name: Run helm package charts
run: |
Expand Down

0 comments on commit 69f072f

Please sign in to comment.