Skip to content

Release 1.4.0

Release 1.4.0 #187

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Install Dependencies
run: poetry install
# - name: Download NLTK Resources
# run: poetry run nltk_download_script
- name: Run Tests
run: poetry run pytest --ignore=tests/clustering/