feat(digitalhub): dremio now uses coder email and an automatically generated password; core tests now take the token from core directly; kubeflow-pipelines now uses a separate bucket #149
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Test Charts | |
on: pull_request | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.7' | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.6.1 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed="$(ct list-changed --config .github/linters/ct.yaml)" | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> "$GITHUB_OUTPUT" | |
fi | |
# - name: install helm unittest plugin | |
# if: steps.list-changed.outputs.changed == 'true' | |
# run: | | |
# helm env | |
# helm plugin install https://github.com/quintush/helm-unittest.git --version 0.2.8 | |
- name: Run chart-testing (lint) | |
run: ct lint --config .github/linters/ct.yaml | |
# - name: Create kind cluster | |
# uses: helm/kind-action@v1.9.0 | |
# if: steps.list-changed.outputs.changed == 'true' | |
# - name: Run chart-testing (install) | |
# run: ct install --config .github/linters/ct.yaml |