From 2799584e1202d7e3325f80ee640d21e3e22e3b14 Mon Sep 17 00:00:00 2001 From: Juan Hoyos Date: Fri, 5 May 2023 15:30:54 -0500 Subject: [PATCH] Fix CI, the original one is pushed from the other repositories by @nelsonfertica but it doesn't apply to this project --- .github/workflows/android_pr.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android_pr.yml b/.github/workflows/android_pr.yml index ab582d5..a4d7ad0 100755 --- a/.github/workflows/android_pr.yml +++ b/.github/workflows/android_pr.yml @@ -19,8 +19,8 @@ jobs: distribution: 'temurin' cache: gradle - - name: Assemble app debug APK - run: bash ./gradlew assembleDebug + - name: Build the project + run: bash ./gradlew build --stacktrace code_quality_analysis: name: Check code quality @@ -36,6 +36,4 @@ jobs: distribution: 'temurin' cache: gradle - name: Misspelling on detekt - run: bash ./gradlew detekt - - name: Run unit tests & validate coverage - run: bash ./gradlew jacocoCoverageVerification --stacktrace --continue + run: bash ./gradlew detekt --stacktrace --continue