feat: Example Notebook for Tessera based S2Encoder Embeddings #30
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: astral-sh/setup-uv@v7.1 | |
| with: | |
| enable-cache: true | |
| python-version: 3.13 | |
| - run: uv run --all-extras --dev pytest -vvv --cov=src | |
| - name: Report Coverage | |
| run: uv run --all-extras --dev coverage report -m | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: astral-sh/setup-uv@v7.1 | |
| with: | |
| enable-cache: true | |
| python-version: 3.13 | |
| - name: pre-commit | |
| run: uv run --all-extras --dev pre-commit run --all-files -v |