typo (it's vs its) #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ruff | |
- run: ruff check --output-format=github . | |
tests: | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
include: | |
# - os: "ubuntu-latest" | |
# python-version: "pypy3.10" Failed to build JPype1 | |
# - os: "ubuntu-latest" | |
# python-version: "graalpy-23.1" Failed to build JPype1 | |
# - os: "windows-2022" | |
# python-version: "3.10" | |
- os: "macos-latest" | |
python-version: "3.10" | |
- os: "macos-11" | |
python-version: "3.10" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Install lxml dev dependencies" | |
if: ${{ startsWith(matrix.python-version, 'graalpy') }} | |
run: sudo apt-get install libxml2-dev libxslt-dev python3-dev | |
- name: "Install dependencies" | |
run: | | |
python -m pip install --upgrade pip wheel setuptools | |
pip install . | |
# https://stackoverflow.com/a/69439779/2988107 | |
pip install --upgrade numpy tinysegmenter jieba konlpy hebrew_tokenizer "tweepy<4.0.0" greek-stemmer-pos | |
python -c "import nltk; nltk.download('punkt')" | |
pip install --upgrade pytest codecov pytest-cov | |
- run: pytest tests | |
env: | |
CI: 1 | |
PYTHONDONTWRITEBYTECODE: 1 | |
- run: codecov |