From 9c422944af6eafb524f9b6fc0206622517c988b7 Mon Sep 17 00:00:00 2001 From: Yurii Serhiichuk Date: Sun, 3 Mar 2024 15:56:38 +0100 Subject: [PATCH] Print Gradle stacktrace and warnings --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8618bf4..50c6e61 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,7 +40,7 @@ jobs: - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Run build with Gradle wrapper - run: ./gradlew build + run: ./gradlew build --stacktrace --warning-mode all - name: Upload build reports uses: actions/upload-artifact@v3 if: always() @@ -48,4 +48,4 @@ jobs: name: build-reports path: build/reports/ - name: Run checks - run: ./gradlew check jacocoTestReport + run: ./gradlew check test integrationTest jacocoTestReport --stacktrace --warning-mode all