We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f54dc commit efa8ce0Copy full SHA for efa8ce0
.github/workflows/pylint.yml
@@ -0,0 +1,25 @@
1
+name: Pylint
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ environment: st
9
+ strategy:
10
+ matrix:
11
+ python-version: ["3.8", "3.9", "3.10"]
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Set up Python ${{ matrix.python-version }}
15
+ uses: actions/setup-python@v3
16
+ with:
17
+ python-version: ${{ matrix.python-version }}
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install pylint
22
+ - name: Analysing the code with pylint
23
24
+ pylint $(git ls-files '*.py')
25
0 commit comments