revert KNP option #1513
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: Test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: Run tests with pytest | |
container: kunlp/jumanpp-knp:ubuntu22.04 | |
runs-on: ubuntu-22.04 | |
strategy: | |
max-parallel: 6 | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install required apt packages | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update -yq | |
apt-get install -yq curl build-essential libsqlite3-dev libffi-dev libssl-dev | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
run: | | |
python3 -m pip install --user pipx | |
python3 -m pipx ensurepath | |
python3 -m pipx install poetry | |
- name: Add path for Python packages | |
run: | | |
echo "$HOME/.local/bin" >> $GITHUB_PATH | |
- name: Install dependencies | |
run: | | |
poetry install --no-interaction --without dev,docs --extras=cli --no-cache | |
- name: Install KWJA | |
# KWJA does not support Python 3.13 | |
if: ${{ matrix.python-version != 3.13 }} | |
run: | | |
pipx install kwja | |
kwja --model-size tiny --text "テスト" | |
- name: Run tests with coverage | |
if: ${{ matrix.python-version == 3.10 }} | |
run: | | |
poetry run pytest --cov=./ --cov-report=xml -v ./tests | |
- name: Run tests without coverage | |
if: ${{ matrix.python-version != 3.10 }} | |
run: | | |
poetry run pytest -v ./tests | |
- name: Install git for codecov | |
if: ${{ matrix.python-version == 3.10 }} | |
run: | | |
apt-get install -yq git | |
- name: Upload coverage to Codecov | |
if: ${{ matrix.python-version == 3.10 }} | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage.xml | |
root_dir: true | |
name: codecov-umbrella | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |