feat: add Ingest API codegen with Zod schema generation #842
Workflow file for this run
This file contains hidden or 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
| # Description: Validates YAML syntax and style using yamllint with relaxed rules | |
| name: 'CI: YAML Validation' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**/*.yml' | |
| - '**/*.yaml' | |
| pull_request: | |
| paths: | |
| - '**/*.yml' | |
| - '**/*.yaml' | |
| jobs: | |
| yaml-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Install yamllint | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install yamllint | |
| - name: Validate YAML syntax and style | |
| run: ./scripts/cicd/check-yaml.sh |