-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a profile for to create the dependencies' graph.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
with: | ||
maven-version: 3.9.5 | ||
- name: Build and test with Maven | ||
run: mvn -V --color always -ntp clean verify --file pom.xml '-Dgpg.skip' | tee maven.log | ||
run: mvn -V --color always -ntp clean verify -Dgpg.skip -Ppit -Pdepgraph | tee maven.log | ||
- name: Run Quality Monitor | ||
uses: uhafner/quality-monitor@v1 | ||
with: | ||
|
@@ -121,7 +121,7 @@ jobs: | |
status: ${{ steps.metrics.outputs.style }} | ||
color: 'orange' | ||
path: badges/style.svg | ||
- name: Generate the badge SVG image for the style warnings | ||
- name: Generate the badge SVG image for the bugs | ||
uses: emibcn/[email protected] | ||
with: | ||
label: 'Bugs' | ||
|
@@ -135,6 +135,8 @@ jobs: | |
git config --local user.name "GitHub Action" | ||
git add badges/*.svg | ||
git commit -m "Update badges with results from latest autograding" || true | ||
git add doc/dependency-graph.puml | ||
git commit -m "Update dependency graph to latest versions from POM" || true | ||
- name: Push updated badges to GitHub repository | ||
uses: ad-m/github-push-action@master | ||
if: ${{ success() }} | ||
|