From edd52da1b987ba69b696225c5f50ec5fef5c2c8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Vu=C4=8Dica?= Date: Wed, 18 Sep 2024 00:15:02 +0000 Subject: [PATCH] .github/workflows: More reporting from action-junit-report. Update the configuration of the action-junit-report in ci-bazel.yml to include additional options for generating test reports. The include_passed, detailed_summary, annotate_notice, and follow_symlink options have been added to the action configuration. --- .github/workflows/ci-bazel.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci-bazel.yml b/.github/workflows/ci-bazel.yml index 0272b80a..57eb8e91 100644 --- a/.github/workflows/ci-bazel.yml +++ b/.github/workflows/ci-bazel.yml @@ -128,6 +128,10 @@ jobs: with: commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow report_paths: 'bazel-testlogs/**/test.xml' + include_passed: true + detailed_summary: true + annotate_notice: true + follow_symlink: true continue-on-error: true bazel_build_buildbuddy: runs-on: ubuntu-latest @@ -248,4 +252,8 @@ jobs: with: commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow report_paths: 'bazel-testlogs/**/test.xml' + include_passed: true + detailed_summary: true + annotate_notice: true + follow_symlink: true continue-on-error: true