Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Feature/cluster 1

Feature/cluster 1 #306

Workflow file for this run

name: Pytest on PR
on:
push:
branches:
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: run on mac
if: startsWith(matrix.os, 'mac')
run: |
brew install libomp
- name: Install the project
run: |
uv sync --locked --all-extras --dev
python -m spacy download en_core_web_sm
- name: Run tests
run: uv run pytest tests