From eb93a61d9ff49ceb8923d92bad2bc44ab356fe4b Mon Sep 17 00:00:00 2001 From: Tal Regev Date: Mon, 2 Aug 2021 04:22:47 +0300 Subject: [PATCH] Add test report ci --- .github/workflows/test-report.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-report.yml diff --git a/.github/workflows/test-report.yml b/.github/workflows/test-report.yml new file mode 100644 index 0000000000..7511cb7e40 --- /dev/null +++ b/.github/workflows/test-report.yml @@ -0,0 +1,17 @@ +name: 'Test Report' +on: + workflow_run: + workflows: [Linux, Android] # runs after These workflow + types: + - completed + +jobs: + report: + runs-on: ubuntu-latest + steps: + - uses: dorny/test-reporter@v1 + with: + artifact: /(.*)_tests_results/ # artifact name + name: $1 Tests Report # Name of the check run which will be created + path: '*.xml' # Path to test results (inside artifact .zip) + reporter: java-junit