Skip to content

automation

automation #1

Workflow file for this run

name: Validate Catalog
# Fails the build if any generated file is stale or the catalog is inconsistent.
# Runs on every push and pull request.
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r scripts/requirements.txt
- name: Validate catalog
run: python scripts/catalog.py validate