Skip to content

Don't build pypy wheels #51

Don't build pypy wheels

Don't build pypy wheels #51

Workflow file for this run

name: test-manylinux
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
env:
PYTHON: python${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- run: docker build -t mecab-py .
- name: setup and test
run: docker run -v $(pwd):/workdir -w /workdir mecab-py sh -c "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/ && $PYTHON -m pip install pytest wheel unidic-lite && $PYTHON -m pip install -e . && $PYTHON -m pytest"