Skip to content

Commit

Permalink
Add test reporting to Gradle tests on GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
TadeasKriz committed Apr 13, 2024
1 parent 15034a5 commit 2a2af20
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,11 @@ jobs:
"-Pmatrix.targets=${{ inputs.target || 'macosArm64' }}"
"-Pmatrix.configurations=${{ inputs.configuration || 'debug' }}"
"-Pmatrix.linkModes=${{ inputs.linkage || 'static' }}"
build-root-directory: test-runner
build-root-directory: test-runner
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: ${{ failure() || success() }}
with:
check_name: "Smoke Test Reports - Gradle Tests"
report_paths: 'test-runner/build/test-results/test/TEST-*.xml'
require_tests: true

0 comments on commit 2a2af20

Please sign in to comment.