Skip to content

chore: align main with develop (v2.1.0-beta.2 line) #82

chore: align main with develop (v2.1.0-beta.2 line)

chore: align main with develop (v2.1.0-beta.2 line) #82

Workflow file for this run

name: Test Build NullifyPDF
on:
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
actions: read
concurrency:
group: test-build-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-22.04, macos-latest]
variant: [lite, full]
steps:
- name: Checkout Code
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.13'
cache: 'pip' # CACHE RIPRISTINATA!
- name: Install System Dependencies (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y rpm dpkg binutils libxcb-cursor0 libxkbcommon-x11-0 libegl1 desktop-file-utils
- name: Install Python Dependencies (includes spaCy models)
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Smoke Tests
run: pytest tests/ -v
- name: Type Check (mypy)
shell: bash
run: mypy NullifyPDF.py --ignore-missing-imports --no-error-summary 2>&1 | head -50 || true
- name: Build
env:
NULLIFYPDF_BUILD_VARIANT: ${{ matrix.variant }}
run: python build_local.py
- name: Upload Artifact
uses: actions/upload-artifact@v7
with:
name: test-build-${{ runner.os }}-${{ matrix.variant }}
path: |
dist/NullifyPDF_v*_Windows_*.exe
dist/NullifyPDF_v*_macOS_*.zip
dist/NullifyPDF_v*_Ubuntu_*.deb
dist/NullifyPDF_v*_Fedora_*.rpm
retention-days: 3