Skip to content

Clarify GitHub-free vs Gumroad-paid messaging in customer docs. #4

Clarify GitHub-free vs Gumroad-paid messaging in customer docs.

Clarify GitHub-free vs Gumroad-paid messaging in customer docs. #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
name: Test (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dev deps
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: pytest -q
build:
name: Build Windows exe
runs-on: windows-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install PyInstaller
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Build
run: ./build_exe.ps1 -SkipDesktopCopy
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: PythonBackUp-exe
path: dist/PythonBackUp.exe