diff options
Diffstat (limited to '.github/workflows/darker-lint.yml')
-rw-r--r-- | .github/workflows/darker-lint.yml | 6 |
1 files 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 |