feat: add L7 graph sync validator #84
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
| name: validate-version-bump | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| validate-version: | |
| name: Validate version bump | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Validate version bump | |
| env: | |
| GITHUB_EVENT_PATH: ${{ github.event_path }} | |
| run: python scripts/validate_version_bump.py | |
| - name: Validate English-only content | |
| run: | | |
| pip install -r tests/requirements.txt | |
| python tests/validate_language.py |