Add test summary to workflow

This commit is contained in:
alexcrea 2024-11-05 17:01:25 +01:00
parent 5e098c5118
commit 1a8a6b2dc5
No known key found for this signature in database
GPG key ID: 43FD265DB0DBF91F

View file

@ -41,7 +41,11 @@ jobs:
- name: Make gradlew executable - name: Make gradlew executable
run: chmod +x ./gradlew run: chmod +x ./gradlew
- name: Build with Gradle Wrapper - 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). # 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. # If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.