From 7cac9ea07bc4d6913884237287608801dfd942a3 Mon Sep 17 00:00:00 2001 From: Kirill Kamakin Date: Sat, 27 Nov 2021 14:45:18 +0300 Subject: [PATCH] Implement publishing JUnit test reports --- .github/workflows/check.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index e2f6c35..2410c6b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,4 +19,10 @@ jobs: cache: 'gradle' - name: Run tests - run: ./gradlew check --no-daemon \ No newline at end of file + run: ./gradlew check --no-daemon + + - name: Publish test reports + uses: mikepenz/action-junit-report@v2 + if: always() # always run even if the previous step fails + with: + report_paths: '**/build/test-results/test/TEST-*.xml' \ No newline at end of file