From d55f8d802195b306d6b7da8c3821c3dfd39c4885 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Mon, 26 Aug 2024 21:58:36 +0530 Subject: [PATCH] T0000: check --- .github/workflows/darker-lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/darker-lint.yml b/.github/workflows/darker-lint.yml index 2670876..5b222ff 100644 --- a/.github/workflows/darker-lint.yml +++ b/.github/workflows/darker-lint.yml @@ -19,8 +19,8 @@ jobs: - name: darker install run: | - pip install --upgrade darker~=2.1.1 - pip install black==22.12.0 isort==5.11.4 mypy==0.990 flake8==5.0.4 pylint==2.15.5 + pip install git+https://github.com/akaihola/darker.git@acb622567d1a26b0c6dcbb1b171c1c8340ee6c22 + pip install black==22.12.0 isort==5.11.4 mypy==0.990 flake8==5.0.4 pylint==2.15.5 ruff>=0.0.292 - name: Fetch current branch run: | @@ -28,7 +28,7 @@ jobs: - name: Analyze Code with Darker run: | - darker -r current... --check --diff --lint "flake8" --isort --color ./src + darker -r current... --check --diff --lint "ruff check" --isort --color ./src # - name: analyze