Skip to content

test-manylinux

test-manylinux #54

Workflow file for this run

name: test-manylinux
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 10 in .github/workflows/test_manylinux.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_manylinux.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12 ]
env:
PYTHON: python${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- 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"