Skip to content

Commit 437c99f

Browse files
committed
try explicit installation of pyreverse
1 parent 3a4ea04 commit 437c99f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/uml.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,19 @@ jobs:
2626
pip install 'causalpy[docs]'
2727
sudo apt-get update && sudo apt-get install -y graphviz
2828
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
3331

34-
- name: Debug pyreverse installation
32+
- name: Verify pylint and pyreverse
3533
run: |
3634
python -m pip show pylint
3735
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'
3942
4043
- name: Update the UML Diagrams
4144
run: |

0 commit comments

Comments
 (0)