diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index d6779d8..d58cf31 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -28,4 +28,4 @@ jobs: uv sync --group typecheckers - name: Run type checker - run: mypy -p argenta + run: uv run python -m mypy -p argenta diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index f504400..988d9cd 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -28,4 +28,4 @@ jobs: uv sync --group linters - name: Run linter - run: ruff check ./src + run: uv run python -m ruff check ./src diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c58b8ce..21f397f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,4 +28,4 @@ jobs: uv sync --group tests - name: Run tests - run: pytest tests + run: uv run python -m pytest tests