From b6ea1b6fc1852b2b1517457099c3e3009ab5c148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 20 Feb 2024 13:03:41 -0300 Subject: [PATCH] run ci commands using poetry run --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be76cd4..06be5be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,18 +25,19 @@ jobs: python-version-file: ${{ github.workspace }}/.python-version cache: poetry cache-dependency-path: poetry.lock + - name: Install dependencies run: | poetry install - name: Typecheck run: | - pyright . + poetry run pyright . - name: Lint run: | - ruff check . + poetry run ruff check . - name: Test run: | - python3 -m pytest tests/ \ No newline at end of file + poetry run pytest tests/ \ No newline at end of file