feat: Add optional lz4 compression support for arrays passed via base64 or binref encoding
#2019
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.14" | |
| dependencies: | |
| - "pinned" | |
| include: | |
| - os: ubuntu-latest | |
| python-version: "3.14" | |
| dependencies: "latest" | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install package | |
| run: | | |
| if [ "${{ matrix.dependencies }}" = "pinned" ]; then | |
| echo "Using pinned dependencies" | |
| pip install -r requirements.txt | |
| pip install --no-deps . | |
| else | |
| echo "Using latest dependencies" | |
| pip install . | |
| fi | |
| - name: Ensure CLI is available | |
| run: | | |
| tesseract --help | |
| - name: Ensure basic workflow works | |
| # Docker is only available on Linux | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: | | |
| tesseract build examples/helloworld | |
| tesseract run helloworld apply '{"inputs": {"name": "GitHub Actions"}}' |