From eb929bdf920cc173a272215435e64e9548c0741d Mon Sep 17 00:00:00 2001 From: Andrew Polk Date: Mon, 8 Jun 2026 10:41:09 -0700 Subject: [PATCH] Run tests in CI --- .github/workflows/gradle-build.yml | 7 +++++-- .gitignore | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index c312998..40f914c 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -20,8 +20,11 @@ jobs: distribution: 'temurin' cache: gradle - - name: Build with Gradle - run: ./gradlew build + - name: Run unit tests + run: ./gradlew :app:testDebugUnitTest + + - name: Build debug APK + run: ./gradlew :app:assembleDebug - name: Build Release Bundle run: ./gradlew :app:bundleRelease diff --git a/.gitignore b/.gitignore index da9519f..02c794d 100644 --- a/.gitignore +++ b/.gitignore @@ -62,3 +62,5 @@ build *~ *.swp *.aab + +*.orig