Skip to content

First pass at sparse tree embeddings #341

First pass at sparse tree embeddings

First pass at sparse tree embeddings #341

Workflow file for this run

name: Code Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
if: ${{ always() }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Set up venv
run: uv venv
- name: Install Base Dependencies
run: |
uv pip install -e '.[dev]'
uv pip install -e '.[sbert]'
- name: Unittest
run: uv run pytest -n auto -vv