Skip to content

Commit d13a7c3

Browse files
committed
Update pylint workflow to support Python 3.11, 3.12, and 3.13; output lint results to a file
1 parent a50f99f commit d13a7c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pylint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10"]
10+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Set up Python ${{ matrix.python-version }}
@@ -18,6 +18,6 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install pylint
21-
- name: Analysing the code with pylint
22-
run: |
23-
pylint $(git ls-files '*.py')
21+
- name: Analysing the code with pylint
22+
run: |
23+
pylint $(git ls-files '*.py') --output=lint.txt || true

0 commit comments

Comments
 (0)