We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a394ca0 commit 72d4e7bCopy full SHA for 72d4e7b
1 file changed
.github/workflows/lint.yml
@@ -1,4 +1,4 @@
1
-name: Pylint
+name: Linting
2
3
on: [push]
4
@@ -17,9 +17,12 @@ jobs:
17
- name: Install dependencies
18
run: >-
19
python -m
20
- pip install pylint
+ pip install pylint black
21
--user
22
23
+ - name: Check coding style
24
+ run: black --check tests uhubctl
25
+
26
- name: Analysing the code with pylint
27
run: |
28
find . -name '*.py' -exec pylint {} \;
0 commit comments