diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 3b0d8a1c0..2e572c297 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -18,16 +18,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint - - - name: Get Python changed files # Identifies changed Python files - id: changed-py-files - uses: tj-actions/changed-files@v23 - with: - files: | - *.py - **/*.py - name: Analysing the code with pylint - if: steps.changed-py-files.outputs.any_changed == 'true' run: | - pylint ${{ steps.changed-py-files.outputs.all_changed_files }} + pylint $(git ls-files '*.py')