Skip to content

Commit

Permalink
test actions x15
Browse files Browse the repository at this point in the history
  • Loading branch information
Eyre-S committed Aug 9, 2024
1 parent 3dd0827 commit cbe0b62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/assembly-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:
distribution: 'temurin'
- name: "Run assembly jar"
id: assembly-run
shell: bash
run: |
exec 5>&1
outputs=(java -jar ./assembles/*.jar -q -v | tee >(cat - >&5))
outputs=$(java -jar ./assembles/*.jar -q -v | tee >(cat - >&5))
echo "echo=$outputs" >> $GITHUB_OUTPUT
- name: "Publish assembly run summary"
uses: jazanne/job-summary-action@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
with:
name: 'unit-test-report'
path: ./*/target/test-reports/*
- name: "Upload test report to workflow report"
- name: "Publish test report to summary"
if: steps.do-unit-test.conclusion == 'failure' || steps.do-unit-test.conclusion == 'success'
uses: dorny/test-reporter@v1
uses: phoenix-actions/test-reporting@v15
with:
name: 'unit-test-report'
output-to: 'step-summary'
name: 'Unit Tests Report'
path: ./*/target/test-reports/*.xml
reporter: 'java-junit'
output-to: 'step-summary'

0 comments on commit cbe0b62

Please sign in to comment.