chore: remove accidentally committed backup file #439
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: "🚀 Windows - Omnipkg Demo Test (CI - No Redis)" | |
| on: | |
| push: | |
| branches: [ development ] | |
| pull_request: | |
| branches: [ development ] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # NO path parameter - checks out to D:\a\omnipkg\omnipkg | |
| - name: Set up Python (3.11) | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Configure UTF-8 encoding (Windows fix) | |
| run: | | |
| echo "PYTHONIOENCODING=utf-8" >> $env:GITHUB_ENV | |
| echo "PYTHONUTF8=1" >> $env:GITHUB_ENV | |
| shell: pwsh | |
| - name: Install omnipkg | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . | |
| shell: pwsh | |
| - name: Configure omnipkg for non-interactive use | |
| run: | | |
| $configDir = "$HOME\.config\omnipkg" | |
| New-Item -ItemType Directory -Force -Path $configDir | Out-Null | |
| @{ | |
| interactive = $false | |
| auto_confirm = $true | |
| } | ConvertTo-Json | Out-File -FilePath "$configDir\config.json" -Encoding utf8 | |
| Write-Host "✅ Omnipkg configured" | |
| shell: pwsh | |
| - name: Run Demo (Option 8 - Quantum Multiverse) | |
| # Use direct ID '8' and --non-interactive to bypass safe_input and PowerShell pipe issues. | |
| # This will trigger the Windows daemon auto-start and os.execv relaunch. | |
| run: omnipkg demo 8 --non-interactive | |
| shell: pwsh | |
| - name: Run Demo Again (Verify Caching) | |
| continue-on-error: true | |
| run: omnipkg demo 8 --non-interactive | |
| shell: pwsh |