[open-webui-chat] Containerize Open WebUI on Linux with Podman; use py launcher on Windows #973
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
| # Copyright Advanced Micro Devices, Inc. | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: Validate Playbooks | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| validate-playbooks: | |
| name: Playbook Structure & Contract Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Validate playbooks | |
| run: python .github/scripts/validate_playbooks.py | |
| - name: Display summary | |
| if: success() | |
| run: | | |
| echo "### ✅ Playbook Validation Passed" >> $GITHUB_STEP_SUMMARY | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "All playbooks follow the expected structure and contract." >> $GITHUB_STEP_SUMMARY | |