summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/darker-lint.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/darker-lint.yml b/.github/workflows/darker-lint.yml
index 250d355..53b8643 100644
--- a/.github/workflows/darker-lint.yml
+++ b/.github/workflows/darker-lint.yml
@@ -20,7 +20,7 @@ jobs:
- name: darker install
run: |
pip install --upgrade darker~=2.1.1
- pip install darker[isort]
+ pip install black==22.12.0 isort==5.11.4 mypy==0.990 flake8==5.0.4 pylint==2.15.5
- name: Fetch current branch
run: |
@@ -28,7 +28,7 @@ jobs:
- name: Analyze Code with Darker
run: |
- darker -r current... --check --diff --lint "pylint --errors-only" --color ./src
+ darker -r current... --check --diff --lint "pylint --errors-only" --isort --color ./src
# - name: analyze