fix(k8s): Also accept integers as shas/branch names in values schema #52
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: helm-schema-lint | |
on: | |
pull_request: | |
paths: | |
- "kubernetes/**" | |
- ".github/workflows/helm-schema-lint.yaml" | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: latest | |
- name: Run Helm lint on values files | |
run: | | |
helm lint kubernetes/loculus -f kubernetes/loculus/values.yaml | |
helm lint kubernetes/loculus -f kubernetes/loculus/values_e2e_and_dev.yaml | |
helm lint kubernetes/loculus -f kubernetes/loculus/values_preview_server.yaml |