From 0f09429a97dad4d45885a483a2fbbf308e15e405 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 1 Jan 2026 12:45:23 +0800 Subject: [PATCH] .gitlab-ci: Enable ktlint checks for CI Signed-off-by: Aayush Gupta --- .gitlab-ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6b994262d..7b4d95a18 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,8 +12,8 @@ variables: stages: - build +- lint - upload -- release assembleVanillaDebug: stage: build @@ -25,6 +25,12 @@ assembleVanillaDebug: - $DEBUG_BINARY_PATH - 'app/schemas/com.aurora.store.data.room.AuroraDatabase/' +lintChecks: + stage: lint + image: theimpulson/gitlab-ci-android:latest + script: + - './gradlew ktlintCheck' + uploadDebug: stage: upload image: curlimages/curl:latest