From 38809f7026eafcc77b8a8ec837b989c214bccf5f Mon Sep 17 00:00:00 2001 From: "Andriy Kushnir (Orhideous)" Date: Tue, 13 Feb 2024 17:21:55 +0200 Subject: [PATCH] Use python for venv, not system-wide --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index db1aab6..a060eb6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,9 +44,9 @@ jobs: - name: Run linters run: | source .venv/bin/activate - poetry run black --config pyproject.toml --check --diff --verbose . - poetry run isort --check --diff --verbose . - poetry run flake8 --config .flake8 --verbose --count . + black --config pyproject.toml --check --diff --verbose . + isort --check --diff --verbose . + flake8 --config .flake8 --verbose --count . pytest: runs-on: ubuntu-latest @@ -85,4 +85,4 @@ jobs: - name: Run Pytest run: | source .venv/bin/activate - poetry run pytest --verbose + pytest --verbose