From 41126397d698bbd156857364ec558dda6a520043 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 18 Sep 2023 10:05:17 +0200 Subject: [PATCH] Revert "ci: Speed up pylint GitHub Action (#5828)" (#5832) This reverts commit d49c86c845ef9ba5bfc17909cd6cf456910516e1. --- .github/workflows/linting.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 4f48a667e..b05d56297 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -68,9 +68,10 @@ jobs: with: python-version: ${{ env.PYTHON_VERSION }} - - name: Install Pylint and Haystack Linter + - name: Install Haystack run: | - pip install pylint ./haystack-linter + pip install ".[all,dev]" + pip install ./haystack-linter - name: Pylint if: steps.files.outputs.any_changed == 'true'