MANY CHANGES (possible revert) #1
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
| name: Build (Pinned) | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "main", "v1" ] | |
| pull_request: | |
| branches: [ "main", "v1" ] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ macos-latest, windows-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python (pinned) | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13.7" | |
| - name: Upgrade pip tooling | |
| run: python -m pip install --upgrade pip setuptools wheel | |
| - name: Install pinned runtime + build deps | |
| run: | | |
| python -m pip install --no-input -r requirements-build.txt | |
| python -m pip install --no-input -r requirements-dev.txt | |
| - name: Build with PyInstaller (pinned spec) | |
| run: python -m PyInstaller build/pyinstaller.spec --noconfirm | |