From 110c4c4367b146a2d818925b14873e3929b1445e Mon Sep 17 00:00:00 2001 From: Behzod Halil Date: Wed, 18 Oct 2023 11:49:53 +0900 Subject: [PATCH] ci: Change unit test task to testDebugUnitTest (#119) --- .github/workflows/android-pr.yml | 2 +- .../kotlin/io/spherelabs/home/homedomain/GetEmail.kt | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 features/home/homeDomain/src/commonMain/kotlin/io/spherelabs/home/homedomain/GetEmail.kt diff --git a/.github/workflows/android-pr.yml b/.github/workflows/android-pr.yml index ccaf09eb..f68bbe0a 100644 --- a/.github/workflows/android-pr.yml +++ b/.github/workflows/android-pr.yml @@ -46,7 +46,7 @@ jobs: with: key-prefix: gradle-test - name: Unit tests - run: ./gradlew :data:local:test + run: ./gradlew testDebugUnitTest - name: Upload test results uses: actions/upload-artifact@v3.1.0 if: failure() diff --git a/features/home/homeDomain/src/commonMain/kotlin/io/spherelabs/home/homedomain/GetEmail.kt b/features/home/homeDomain/src/commonMain/kotlin/io/spherelabs/home/homedomain/GetEmail.kt deleted file mode 100644 index 6cf1f9a8..00000000 --- a/features/home/homeDomain/src/commonMain/kotlin/io/spherelabs/home/homedomain/GetEmail.kt +++ /dev/null @@ -1,6 +0,0 @@ -package io.spherelabs.home.homedomain - -import io.spherelabs.home.homedomain.repository.HomeRepository -import kotlinx.coroutines.flow.Flow - -