We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c418d75 commit 3533279Copy full SHA for 3533279
1 file changed
.github/workflows/pylint.yml
@@ -0,0 +1,27 @@
1
+name: Pylint
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.8", "3.9", "3.10"]
15
+ 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
27
+ pylint $(git ls-files '*.py')
0 commit comments