Skip to content

Commit 3e0f6b0

Browse files
committed
[cr] make sure pylint tests correct version
1 parent 95ea2d8 commit 3e0f6b0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/pylint.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Pylint
22

3-
on:
3+
on:
44
push:
55
branches:
66
- main
@@ -11,17 +11,17 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10"]
14+
python-version: ["3.11"]
1515
steps:
16-
- uses: actions/checkout@v4
17-
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v3
19-
with:
20-
python-version: ${{ matrix.python-version }}
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
pip install pylint
25-
- name: Analysing the code with pylint
26-
run: |
27-
pylint $(git ls-files '*.py')
16+
- uses: actions/checkout@v4
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v3
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install pylint
25+
- name: Analysing the code with pylint
26+
run: |
27+
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)