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 2057b4c commit adbf3a6Copy full SHA for adbf3a6
.github/workflows/test.yml
@@ -153,3 +153,20 @@ jobs:
153
run: exit 1
154
- name: Success
155
run: echo Success!
156
+
157
+ pylint:
158
+ name: Pylint
159
+ runs-on: ubuntu-latest
160
+ steps:
161
+ - uses: actions/checkout@v5
162
+ - name: Set up Python
163
+ uses: actions/setup-python@v6
164
+ with:
165
+ python-version: '3.*'
166
+ - name: Install Pylint
167
+ run: |
168
+ python -m pip install --upgrade pip
169
+ pip install pylint
170
+ - name: Analyse the code with Pylint
171
172
+ pylint .
0 commit comments