Skip to content

Commit

Permalink
ci(mercury): fix library path
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Baliasnikov committed Oct 25, 2022
1 parent e88ecd3 commit ad0a274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mercury.yml
Expand Up @@ -54,13 +54,13 @@ jobs:
if: always()
uses: ./.github/actions/aggregate-test-reports
with:
tests-dir: "mercury/prism-mediator"
tests-dir: "${{ defaults.working-directory }}"

- name: Publish test results
# Publish even if the test step fails
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
junit_files: "mercury/prism-mediator/target/test-reports/**/TEST-*.xml"
junit_files: "${{ defaults.working-directory }}/target/test-reports/**/TEST-*.xml"
comment_title: "Mercury Test Results"
check_name: "Mercury Test Results"

0 comments on commit ad0a274

Please sign in to comment.