From b9cf3337677ed9f4fa1daaf5b29b519fb66c9040 Mon Sep 17 00:00:00 2001 From: nobu-g Date: Fri, 8 Dec 2023 21:38:02 +0900 Subject: [PATCH] fix lint workflow --- .github/workflows/lint.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e8172926f..23ed2e3d8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,11 +10,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.10" - - name: Install Poetry and pre-commit + - name: Install pre-commit and run linters run: | - pipx install poetry pipx install pre-commit - - name: Install dependencies - run: poetry install --no-interaction - - name: Run pre-commit - run: poetry run pre-commit run --all-files + pre-commit run --all-files