Skip to content

ci(workflows): add dependency installation step for validation #3

ci(workflows): add dependency installation step for validation

ci(workflows): add dependency installation step for validation #3

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: Install dependencies
run: |
python -m pip install --upgrade pip
pip install PyYAML
- name: Validate JSON and YAML files
run: |
python .github/scripts/validate_files.py --directory . --check-json --check-yaml