From a2f2348b5d1fbb8c86b00e781249d44c391d26b4 Mon Sep 17 00:00:00 2001 From: Guyiome Date: Thu, 20 Aug 2026 18:39:10 +0200 Subject: [PATCH] Run Android Lint (lintDebug) in CI Verified locally first: 0 errors, 52 warnings (dependency-version bumps already covered by Dependabot, typography/KTX suggestions, unused resources -- nothing blocking). Same job as the existing build/test step rather than a dedicated one, since it'd just duplicate checkout/JDK/Gradle/model-download for no benefit. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37a27ed..515e0aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,5 +32,5 @@ jobs: curl -fL -o app/src/main/assets/face_landmarker.task \ https://storage.googleapis.com/mediapipe-models/face_landmarker/face_landmarker/float16/latest/face_landmarker.task - - name: Tests unitaires + build debug - run: ./gradlew testDebugUnitTest assembleDebug + - name: Tests unitaires + build debug + lint + run: ./gradlew testDebugUnitTest assembleDebug lintDebug