Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(mercury): remove unresolvable defaults variable #85

Merged
merged 1 commit into from Oct 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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"