Build launched by laedanrex 🚀 #8
Workflow file for this run
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: GitHub Actions Demo | |
run-name: Build launched by ${{ github.actor }} 🚀 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
- name: Build and Run Tests | |
run: mvn --settings .ci/github-actions-settings.xml verify | |
env: | |
SERVICE_NEXUS_URL: ${{ secrets.SERVICE_NEXUS_URL }} | |
CI_USR: ${{ secrets.CI_USR }} | |
CI_PSW: ${{ secrets.CI_PSW }} | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' |