Create __init__.py #16
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: CI • Smoke (validate → run) | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Show runner path info | |
| run: | | |
| echo "Workspace: $GITHUB_WORKSPACE" | |
| echo "Current dir:" | |
| pwd | |
| echo "--- Contents ---" | |
| ls -la | |
| echo "--- Inner repo ---" | |
| ls -la CRI-CORE || true | |
| echo "--- Workflow file check ---" | |
| find . -name minimal.json | |
| - name: Validate & run minimal workflow (absolute path) | |
| run: | | |
| WF=$(find . -name minimal.json | head -n 1) | |
| echo "Using workflow: $WF" | |
| python3 cli.py validate "$WF" | |
| python3 cli.py run "$WF" |