File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments