Skip to content

Commit 09bc175

Browse files
committed
fast track to pylint-3.3.5
1 parent 482e440 commit 09bc175

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/pylint335x.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Pylint
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- '*.py'
8+
pull_request:
9+
paths:
10+
- '*.py'
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
python-version: ["3.8", "3.9", "3.10"]
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
sudo apt-get install portaudio19-dev
28+
pip install -r ./requirements.txt
29+
pip install git+https://github.com/pylint-dev/pylint.git@main
30+
- name: Analysing the code with pylint
31+
run: |
32+
pylint $(git ls-files '*.py')
33+
# python-version: 3.11
34+
# changes made on 08.03.2025: want to see issue 10189 fixed as that one has been merged
35+
# once they release pylint 3.3.5, use pylint.yml

0 commit comments

Comments
 (0)