✅ Re-implement the Instrumented Tests with Compose Multiplatform #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run instrumented tests | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
android-test: | |
name: "Android UI Test" | |
runs-on: macos-latest | |
timeout-minutes: 80 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Run instrumented tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 27 | |
profile: Galaxy Nexus | |
disable-animations: true | |
disk-size: 2000M | |
heap-size: 600M | |
script: | | |
adb logcat -c | |
adb logcat > logcat.txt & | |
./gradlew connectedAndroidTest --stacktrace | |
- name: Save Test Results | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: test-results | |
path: | | |
/Users/runner/work/alkaa/alkaa/app/build/reports/androidTests/ | |
./logcat.txt | |
retention-days: 7 | |
ios-test: | |
name: "iOS UI Test" | |
runs-on: macos-latest | |
timeout-minutes: 80 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Run instrumented tests | |
run: ./gradlew :shared:iosSimulatorArm64Test | |
- name: Save Test Results | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: test-results | |
path: | | |
/Users/runner/work/alkaa/alkaa/app/build/reports/androidTests/ | |
./logcat.txt | |
retention-days: 7 |