Skip to content

Commit

Permalink
ci(mercury): remove unresolvable defaults variable (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
abalias committed Oct 25, 2022
1 parent 782a448 commit 51410d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/mercury.yml
Expand Up @@ -45,7 +45,8 @@ jobs:
uses: coursier/cache-action@v6.3

- name: Run Scala formatter
run: sbt scalafmtCheckAll
run: |
sbt scalafmtCheckAll
- name: Build and test Mercury
run: sbt test
Expand All @@ -54,13 +55,13 @@ jobs:
if: always()
uses: ./.github/actions/aggregate-test-reports
with:
tests-dir: "${{ defaults.working-directory }}"
tests-dir: "mercury/mercury-library"

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

0 comments on commit 51410d1

Please sign in to comment.