Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

古いpoetry.lockを弾く #655

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,16 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
- name: Install Poetry
run: |
python -m pip install --upgrade poetry
poetry config virtualenvs.create false
poetry install --with test
- name: Validate poetry.lock
run: |
poetry lock --no-update
git diff
qryxip marked this conversation as resolved.
Show resolved Hide resolved
- name: Install dependencies
run: poetry install --with test
- name: Check code style for voicevox_core_python_api
run: |
black --check .
Expand Down
Loading