From bf1fdd7dde9cafea8d6cef37ce0a8d62f15427dc Mon Sep 17 00:00:00 2001 From: Halil Ozercan Date: Fri, 6 Dec 2024 01:51:28 +0000 Subject: [PATCH] Remove ui tests runner We dont have tests... --- .github/workflows/android.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 922d0110..c55703fa 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -21,28 +21,3 @@ jobs: key: gradle-${{ runner.os }}-${{ hashFiles('buildSrc/**') }}-${{ hashFiles('**/*.gradle*') }} restore-keys: gradle-${{ runner.os }}- - run: ./gradlew build - - ui-tests: - runs-on: macos-latest - strategy: - # Allow tests to continue on other devices if they fail on one device. - fail-fast: false - matrix: - api-level: - - 29 - steps: - - uses: actions/checkout@v2 - - name: set up JDK 17 - uses: actions/setup-java@v1 - with: - java-version: 17 - - uses: actions/cache@v1 - with: - path: ~/.gradle/caches - key: gradle-${{ runner.os }}-${{ hashFiles('buildSrc/**') }}-${{ hashFiles('**/*.gradle*') }} - restore-keys: gradle-${{ runner.os }}- - - uses: reactivecircus/android-emulator-runner@v2 - with: - api-level: ${{ matrix.api-level }} - arch: x86_64 - script: ./gradlew connectedCheck --no-daemon --stacktrace