From 1a8a6b2dc5170e6ebe19ebd76eb03b559a2fdfd6 Mon Sep 17 00:00:00 2001 From: alexcrea <42614139+alexcrea@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:01:25 +0100 Subject: [PATCH] Add test summary to workflow --- .github/workflows/gradle.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index db79fc2..e0e8353 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -41,7 +41,11 @@ jobs: - name: Make gradlew executable run: chmod +x ./gradlew - name: Build with Gradle Wrapper - run: ./gradlew build --no-daemon + run: ./gradlew build + + - name: Summarize tests results + uses: jeantessier/test-summary-action@v1 + if: ${{ always() }} # NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html). # If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.