File tree 1 file changed +9
-6
lines changed
1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -26,16 +26,19 @@ jobs:
26
26
pip install 'causalpy[docs]'
27
27
sudo apt-get update && sudo apt-get install -y graphviz
28
28
29
- - name : Configure Git Identity
30
- run : |
31
- git config user.name 'github-actions[bot]'
32
- git config user.email 'github-actions[bot]@users.noreply.github.com'
29
+ - name : Install pylint explicitly
30
+ run : python -m pip install pylint
33
31
34
- - name : Debug pyreverse installation
32
+ - name : Verify pylint and pyreverse
35
33
run : |
36
34
python -m pip show pylint
37
35
which pyreverse
38
- pyreverse --version || echo "pyreverse not found"
36
+ pyreverse --version
37
+
38
+ - name : Configure Git Identity
39
+ run : |
40
+ git config user.name 'github-actions[bot]'
41
+ git config user.email 'github-actions[bot]@users.noreply.github.com'
39
42
40
43
- name : Update the UML Diagrams
41
44
run : |
You can’t perform that action at this time.
0 commit comments