Skip to content

feat: issue mega sprint - allow package_data outside root, cli alias tesseract-core, flags to pass arguments to docker run and tesseract runtime, json+binref support in SDK, better support for tesseract serve --network host #1456

feat: issue mega sprint - allow package_data outside root, cli alias tesseract-core, flags to pass arguments to docker run and tesseract runtime, json+binref support in SDK, better support for tesseract serve --network host

feat: issue mega sprint - allow package_data outside root, cli alias tesseract-core, flags to pass arguments to docker run and tesseract runtime, json+binref support in SDK, better support for tesseract serve --network host #1456

name: Test installation via pip
on:
# run on PRs for validation
pull_request:
jobs:
test-pip-install:
name: "Test pip install"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
python-version:
- "3.10"
- "3.13"
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install -r requirements.txt
pip install --no-deps .
- name: Ensure CLI is usable (no missing deps)
run: |
tesseract --help