ci(android): print complete lint failures

This commit is contained in:
2026-09-08 16:52:45 -03:00
parent 7b2a510018
commit 8a6c182452
+9
View File
@@ -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