Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add jacoco pmd and cpd reports to published reports #1028

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/maven-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
distribution: "corretto"

- name: Build with Maven
run: mvn -B -e -ntp "-Dstyle.color=always" site
run: mvn -B -e -ntp "-Dstyle.color=always" site -Pcoverage,pmd

slack-notify:
if: ${{ github.event_name == 'push' && github.repository == 'NationalSecurityAgency/emissary' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish site to GitHub Pages
run: mvn site site:stage scm-publish:publish-scm -DskipTests
run: mvn site site:stage scm-publish:publish-scm -Pcoverage,pmd -DskipTests
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading