| name: Validate PD Discovery Benchmark | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install validation dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install pandas pyyaml | |
| - name: Validate repository assets | |
| run: python scripts/04_validate_resource.py | |
| - name: Check dashboard syntax | |
| run: python -m py_compile dashboard/app.py | |