From b82f93b459ea7d5dbaf3dd8edaf7890cc9505bfb Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 19 Nov 2022 18:10:32 +0530 Subject: [PATCH] chore(ci): show stacktrace on failure --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4383a865..ffc204e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,14 @@ jobs: - name: Run unit tests uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # tag=v2.3.3 with: - arguments: --no-configuration-cache check -PslimTests + arguments: --no-configuration-cache --stacktrace check -PslimTests gradle-home-cache-cleanup: true cache-read-only: ${{ github.ref != 'refs/heads/main' }} - name: Run Detekt uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # tag=v2.3.3 with: - arguments: --no-configuration-cache detektMain + arguments: --no-configuration-cache --stacktrace detektMain gradle-home-cache-cleanup: true cache-read-only: ${{ github.ref != 'refs/heads/main' }} @@ -66,7 +66,7 @@ jobs: - name: Build release app uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # tag=v2.3.3 with: - arguments: --no-configuration-cache collectReleaseApks + arguments: --no-configuration-cache --stacktrace collectReleaseApks gradle-home-cache-cleanup: true cache-read-only: ${{ github.ref != 'refs/heads/main' }}