From 8a6c182452b197865244f43060dc903597833b86 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Tue, 8 Sep 2026 16:52:45 -0300 Subject: [PATCH] ci(android): print complete lint failures --- .github/workflows/android.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 3df7f3c..b84e9d1 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -61,6 +61,15 @@ jobs: working-directory: android-app run: gradle --no-daemon :app:lintDebug + - name: Print complete lint failures + if: failure() + run: | + report="android-app/app/build/intermediates/lint_intermediate_text_report/debug/lintReportDebug/lint-results-debug.txt" + if [ -f "$report" ]; then + echo '========== ANDROID LINT ==========' + cat "$report" + fi + - name: Android unit tests working-directory: android-app run: gradle --no-daemon :app:testDebugUnitTest