chore: temporary backfill workflow for r20 missing assets (to be remo… #368
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 | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| name: Validate workflows, shell scripts, and Python syntax | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Install PyYAML | |
| run: pip install pyyaml | |
| - name: Validate GitHub workflows | |
| run: python3 .github/scripts/validate_workflows.py | |
| - name: Validate shell scripts | |
| run: python3 .github/scripts/validate_shell.py | |
| - name: Validate Python syntax | |
| run: python3 .github/scripts/validate_python.py |