Skip to content

Update README

Update README #24

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
env:
GITHUB_ACTIONS: true
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Install spaCy model
run: |
poetry run python -m spacy download en_core_web_sm
- name: Run tests
run: |
poetry run pytest -v tests/