Skip to content

test android one more time #4

test android one more time

test android one more time #4

Workflow file for this run

name: Build Android
on:
workflow_dispatch:
push:
branches:
- android-19
jobs:
android-test:
name: Run tests
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
api-level: [ 21, 31 ]
arch: [ x86, x86_64 ]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-gradle
# TODO: setup cache
- name: Run tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
arch: ${{ matrix.arch }}
script: ./gradlew connectedCheck