From 4d5b821e52830f289614792f114df3e6ac9a9fbf Mon Sep 17 00:00:00 2001 From: Serene-Arc <33189705+Serene-Arc@users.noreply.github.com> Date: Sun, 9 Jun 2024 16:02:17 +1000 Subject: [PATCH] Use poetry prefix --- .github/workflows/lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3c5873056..ca57336e3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -56,7 +56,7 @@ jobs: uses: liskin/gh-problem-matcher-wrap@v3 with: linters: isort - run: poe check-format ${{ needs.changed-files.outputs.changed_python_files }} + run: poetry run poe check-format ${{ needs.changed-files.outputs.changed_python_files }} lint: if: needs.changed-files.outputs.any_python_changed == 'true' @@ -79,7 +79,7 @@ jobs: uses: liskin/gh-problem-matcher-wrap@v3 with: linters: flake8 - run: poe lint ${{ needs.changed-files.outputs.changed_python_files }} + run: poetry run poe lint ${{ needs.changed-files.outputs.changed_python_files }} mypy: if: needs.changed-files.outputs.any_python_changed == 'true' @@ -103,7 +103,7 @@ jobs: continue-on-error: true with: linters: mypy - run: poe check-types --show-column-numbers --no-error-summary ${{ needs.changed-files.outputs.changed_python_files }} + run: poetry run poe check-types --show-column-numbers --no-error-summary ${{ needs.changed-files.outputs.changed_python_files }} docs: if: needs.changed-files.outputs.any_docs_changed == 'true' @@ -125,4 +125,4 @@ jobs: - uses: sphinx-doc/github-problem-matcher@master name: Build docs with: - run: poe docs + run: poetry run poe docs