diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-08-26 21:38:55 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 21:38:55 +0530 |
commit | c1d0fc01bef37853c4db4941bf5d62e21d44f3f4 (patch) | |
tree | bb8aca31b163a68f1e68a2dfaf8d502f0d62300f | |
parent | ed09677a6b1e0bf737cc502d3d061f7fb199a1e7 (diff) | |
download | vyos-workflow-test-temp-c1d0fc01bef37853c4db4941bf5d62e21d44f3f4.tar.gz vyos-workflow-test-temp-c1d0fc01bef37853c4db4941bf5d62e21d44f3f4.zip |
T0000: check
-rw-r--r-- | .github/workflows/darker-lint.yml | 4 |
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 |