diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 988ca76..91a08c0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: python-version: 3.8 - name: Install Python dependencies - run: pip install black flake8 + run: pip install black flake8 pylint - name: Run linters uses: wearerequired/lint-action@v2 @@ -23,3 +23,7 @@ jobs: auto_fix: false black: true flake8: false + + - name: Analysing the code with pylint + run: | + pylint $(git ls-files '*.py')