Skip to content

MANY CHANGES (possible revert) #1

MANY CHANGES (possible revert)

MANY CHANGES (possible revert) #1

Workflow file for this run

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