Functionality Check #609
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: "Functionality Check" | |
on: | |
schedule: | |
- cron: "0 6 * * *" | |
jobs: | |
maven-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout master" | |
uses: actions/checkout@v4 | |
with: | |
ref: "master" | |
- 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 |