From db41aaf91deca6b3b7042677aa5c5f95a543fd0c Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Tue, 24 Oct 2023 10:56:15 +0900 Subject: [PATCH] =?UTF-8?q?=E5=8F=A4=E3=81=84poetry.lock=E3=82=92=E5=BC=BE?= =?UTF-8?q?=E3=81=8F=20(#655)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Hiroshiba --- .github/workflows/python_lint.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_lint.yml b/.github/workflows/python_lint.yml index 56ca65232..4e7c4d8b2 100644 --- a/.github/workflows/python_lint.yml +++ b/.github/workflows/python_lint.yml @@ -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 --exit-code + - name: Install dependencies + run: poetry install --with test - name: Check code style for voicevox_core_python_api run: | black --check .