Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s9latimm committed Oct 12, 2024
1 parent f33a754 commit 3a91bb5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
shell: bash
run: |
pip3 install wheel
pip3 install pylint yapf
pip3 install pylint yapf gitinspector
- name: Run YAPF
shell: bash
Expand All @@ -44,8 +44,13 @@ jobs:
- name: Run Pyreverse
shell: bash
run: |
pyreverse -o pdf --verbose --colorize src
pyreverse -o svg --verbose --colorize src
pyreverse --output pdf --verbose --colorize src
pyreverse --output svg --verbose --colorize src
- name: Run Gitinspector
shell: bash
run: |
gitinspector --file-types py --format html --grading -lHmrTw > gitinspector.html
- name: Upload Artifact
uses: actions/upload-artifact@v4
Expand All @@ -57,6 +62,7 @@ jobs:
path: |
classes.pdf
classes.svg
gitinspector.html
release:
name: Release
Expand Down Expand Up @@ -94,3 +100,4 @@ jobs:
files: |
classes.pdf
classes.svg
gitinspector.html

0 comments on commit 3a91bb5

Please sign in to comment.