Skip to content

Release v1.0.1

Release v1.0.1 #11

name: Integration test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: macos-11
strategy:
matrix:
api-level: [33, 34]
target: ["google_apis"]
steps:
- name: checkout
uses: actions/checkout@v3
- name: Gradle cache
uses: gradle/gradle-build-action@v2
- name: AVD cache
uses: actions/cache@v3
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-${{ matrix.api-level }}
- name: Instrumentation Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: x86_64
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew connectedCheck --stacktrace
- name: Upload Reports
uses: actions/upload-artifact@v3
with:
name: Test-Reports
path: app/build/reports
if: always()