Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: Python 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/ --cov=./ --cov-report=xml