Skip to content

Rename test.yaml to build.yaml #1

Rename test.yaml to build.yaml

Rename test.yaml to build.yaml #1

Workflow file for this run

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install spacy requests nltk
python -m spacy download en_core_web_lg
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest test.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html