Skip to content

Commit

Permalink
internal: Embed JUnit test report detail to the summary and disable c…
Browse files Browse the repository at this point in the history
…heck run

A workaround for mikepenz/action-junit-report#40
  • Loading branch information
xerial committed Aug 6, 2023
1 parent 9c0a70a commit c54fa15
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -53,6 +53,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala 2.12
annotate_only: true
detailed_summary: true
test_2_13:
name: Scala 2.13
runs-on: ubuntu-latest
Expand All @@ -70,6 +72,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala 2.13
annotate_only: true
detailed_summary: true
test_2_13_legacy_jdk:
name: Scala 2.13 + JDK11
runs-on: ubuntu-latest
Expand All @@ -87,6 +91,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala 2.13 + JDK11
annotate_only: true
detailed_summary: true
test_2_13_latest_jdk:
name: Scala 2.13 + JDK20
runs-on: ubuntu-latest
Expand All @@ -104,6 +110,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala 2.13 + JDK20
annotate_only: true
detailed_summary: true
test_3:
name: Scala 3.x (Dotty)
runs-on: ubuntu-latest
Expand All @@ -122,6 +130,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala 3.x
annotate_only: true
detailed_summary: true
test_integration:
name: Scala 3 integration test
runs-on: ubuntu-latest
Expand All @@ -139,6 +149,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Integration Test
annotate_only: true
detailed_summary: true
test_js:
name: Scala.js / Scala 2.12
runs-on: ubuntu-latest
Expand All @@ -161,6 +173,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala.js / Scala 2.12
annotate_only: true
detailed_summary: true
test_js_2_13:
name: Scala.js / Scala 2.13
runs-on: ubuntu-latest
Expand All @@ -183,6 +197,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala.js / Scala 2.13
annotate_only: true
detailed_summary: true
test_js_3:
name: Scala.js / Scala 3
runs-on: ubuntu-latest
Expand All @@ -205,6 +221,8 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report Scala.js / Scala 3
annotate_only: true
detailed_summary: true
test_airspec:
name: AirSpec
runs-on: ubuntu-latest
Expand All @@ -223,3 +241,5 @@ jobs:
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Test Report AirSpec
annotate_only: true
detailed_summary: true

0 comments on commit c54fa15

Please sign in to comment.