diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index f96c3b9..4d6d53b 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -22,4 +22,10 @@ jobs: pip install pylint - name: Analysing the code with pylint run: | - pylint $(git ls-files '*.py') + pylint $(git ls-files '*.py') --output=lint.txt || true + cat lint.txt + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: lint.txt + path: lint.txt