Skip to content

ci: add code review workflow with JSON and YAML validation #1

ci: add code review workflow with JSON and YAML validation

ci: add code review workflow with JSON and YAML validation #1

Workflow file for this run

name: Code Review
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
code-review:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Validate JSON and YAML files
run: |
python .github/scripts/validate_files.py --directory . --check-json --check-yaml