[docs] ドキュメント整理(ユーザーガイドをリンク、VVMのリンク追加、利用規約があることを案内) (#707) #128
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: "Lint Python code" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'example/python/**.py' | |
- 'crates/voicevox_core_python_api/**.py' | |
- 'crates/voicevox_core_python_api/requirements*.txt' | |
- 'crates/voicevox_core_python_api/pyproject.toml' | |
- '.github/workflows/python_lint.yml' | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./crates/voicevox_core_python_api | |
jobs: | |
python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Install Poetry | |
run: | | |
python -m pip install --upgrade poetry | |
poetry config virtualenvs.create false | |
- name: Validate poetry.lock | |
run: | | |
poetry lock --no-update | |
git diff --exit-code | |
- name: Install dependencies | |
run: poetry install --with test | |
- name: Check code style for voicevox_core_python_api | |
run: | | |
black --check . | |
isort --check . | |
- name: Check code style for example/python | |
working-directory: ./example/python | |
run: | | |
black --check . | |
isort --check --profile black . |