Skip to content

Merge pull request #196 from s-frei/dependabot/maven/develop/org.sona… #627

Merge pull request #196 from s-frei/dependabot/maven/develop/org.sona…

Merge pull request #196 from s-frei/dependabot/maven/develop/org.sona… #627

Workflow file for this run

name: "Maven Test"
on:
push:
branches:
- develop
- master
jobs:
maven-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup environment"
shell: bash
run: |
echo "COMMIT_SHA_ABREV=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV
echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
echo "RUN_DATE=$(date +'%d-%m-%Y')" >> $GITHUB_ENV
echo "COMMIT_SHA_ABREV: ${COMMIT_SHA_ABREV}"
echo "BRANCH_NAME: ${BRANCH_NAME}"
echo "RUN_DATE: ${RUN_DATE}"
- name: "Setup JDK 17"
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
architecture: x64
cache: maven
- name: "Run Maven 'test'"
run: mvn test -e -P fancy-report --color always
- name: "Upload test report"
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-report-${{ env.COMMIT_SHA_ABREV }}-${{ env.RUN_DATE }}
path: target/surefire-reports/
- name: "Publish Test Report"
if: success() || failure()
uses: scacap/action-surefire-report@v1