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
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: 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 |