Skip to content

Commit

Permalink
feat: summary
Browse files Browse the repository at this point in the history
  • Loading branch information
4e6 committed Oct 5, 2022
1 parent bbbf19b commit 6bfe4b5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/scala-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ jobs:
path: ${{ env.ENSO_TEST_JUNIT_DIR }}/engine/*.xml
path-replace-backslashes: "true"
reporter: java-junit
- name: Test summary
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: ${{ env.ENSO_TEST_JUNIT_DIR }}/**/*.xml
annotate_only: true
enso-build-cli-ci-gen-job-ci-check-backend-macos:
name: Engine (macos)
runs-on:
Expand Down Expand Up @@ -165,6 +171,12 @@ jobs:
path: ${{ env.ENSO_TEST_JUNIT_DIR }}/engine/*.xml
path-replace-backslashes: "true"
reporter: java-junit
- name: Test summary
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: ${{ env.ENSO_TEST_JUNIT_DIR }}/**/*.xml
annotate_only: true
enso-build-cli-ci-gen-job-ci-check-backend-windows:
name: Engine (windows)
runs-on:
Expand Down Expand Up @@ -241,5 +253,11 @@ jobs:
path: ${{ env.ENSO_TEST_JUNIT_DIR }}/engine/*.xml
path-replace-backslashes: "true"
reporter: java-junit
- name: Test summary
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: ${{ env.ENSO_TEST_JUNIT_DIR }}/**/*.xml
annotate_only: true
env:
ENSO_BUILD_SKIP_VERSION_CHECK: "true"
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class ApiTest extends AnyFlatSpec with Matchers {
)

"Parsing a file and calling a toplevel function defined in it" should "be possible" in {
if ("".length == 0) fail("oops...")
val code =
"""
|foo = x -> x + 1
Expand Down

0 comments on commit 6bfe4b5

Please sign in to comment.