Skip to content

Commit 3cf2d11

Browse files
committed
github/workflow: pylint checker update
pylint github workflow is currently broken due to following error: GitHub Actions / .github/workflows/pylint.yml Invalid workflow file You have an error in your yaml syntax on line 6 A mix of spaces and tab usage is causing this error. Fix the formatting error. Also update the python verion list to include 3.13 and 3.14. These versions are available with newer distributions. Signed-off-by: Sachin Sant <sachinp@linux.ibm.com>
1 parent f87119f commit 3cf2d11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Pylint
33
on:
44
push:
55
branches:
6-
- 'master'
6+
- 'master'
77
pull_request:
88
branches:
99
- 'master'
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10"]
15+
python-version: ["3.8", "3.9", "3.10", "3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)