Skip to content

Update setup.py

Update setup.py #143

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see:https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#using-multiple-python-versions
name: Python package
on:
push:
branches: [ dev , master]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: install spacy model
run: |
# Download base english langauge model
python -m spacy download en_core_web_sm
# Download large english language model
python -m spacy download en_core_web_lg
- name: Black Code Formatter
run: black . --check
- name: Flake Code Checker
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --exit-zero --statistics
- name: Test with pytest
run: |
pytest