Skip to content

Add global.catalogSource fallback for OLM subscriptions #376

Add global.catalogSource fallback for OLM subscriptions

Add global.catalogSource fallback for OLM subscriptions #376

Workflow file for this run

---
name: Verify json schema
on: [push, pull_request]
permissions: read-all # zizmor: ignore[excessive-permissions]
jobs:
jsonschema_tests:
name: Json Schema tests
strategy:
matrix:
python-version: [3.11.3]
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install check-jsonschema
- name: Verify ClusterGroup values.schema.json
run: |
check-jsonschema --schemafile ./values.schema.json "values.yaml"