From 4a2e6024f0ae92d76acce288e6a73bd04066fa1c Mon Sep 17 00:00:00 2001 From: josdem Date: Thu, 30 May 2024 14:40:33 -0400 Subject: [PATCH] #72 Adding emulator check --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 138782f..9090b19 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Minimal Android CI Workflow on: push: - branches: [ "main" ] + branches: [ "main", "feature/72" ] pull_request: branches: [ "main" ] jobs: @@ -29,6 +29,13 @@ jobs: uses: actions/setup-java@v1 with: java-version: 17 + - name: Run connected tests + uses: ReactiveCircus/android-emulator-runner@v2 + with: + api-level: 34 + target: google_apis + arch: x86_64 + script: ./gradlew connectedCheck - name: Build APK run: bash ./gradlew assembleDebug --stacktrace - name: Upload APK