Merge pull request #3621 from fnxpt/experimental #1
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
name: Tests CI | |
on: | |
push: | |
branches: | |
- 'master' # Default branch | |
- '[0-9]+.[0-9]+.x' # Release branches | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
pull_request: | |
branches: | |
- 'master' # Default branch | |
- '[0-9]+.[0-9]+.x' # Release branches | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
workflow_dispatch: | |
# The following concurrency group cancels in-progress jobs or runs on pull_request events only; | |
# if github.head_ref is undefined, the concurrency group will fallback to the run ID, | |
# which is guaranteed to be both unique and defined for the run. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: { } | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # tag=v4.1.3 | |
- name: Set up JDK | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v4.2.1 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Execute unit tests | |
run: |- | |
mvn clean | |
mvn test -P enhance | |
# Publishing coverage to Codacy is only possible for builds of push events. | |
# PRs from forks do not get access to repository secrets. | |
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
- name: Publish test coverage | |
if: ${{ github.event_name != 'pull_request' && github.repository_owner == 'DependencyTrack' }} | |
uses: codacy/[email protected] | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
language: Java | |
coverage-reports: target/jacoco-ut/jacoco.xml | |
- name: Save PR details | |
if: ${{ github.event_name == 'pull_request' }} | |
run: |- | |
echo ${{ github.sha }} > pr-commit.txt | |
echo ${{ github.event.number }} > pr-number.txt | |
- name: Upload PR test coverage report | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # tag=v4.3.2 | |
with: | |
name: pr-test-coverage-report | |
path: |- | |
pr-commit.txt | |
pr-number.txt | |
target/jacoco-ut/jacoco.xml |