Skip to content

Updating kotlinter. (#264) #777

Updating kotlinter. (#264)

Updating kotlinter. (#264) #777

name: Android UI Tests
# This will cancel any in progress workflows for the same PR, if
# multiple pushes happen in quick succession.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
push:
branches:
- development
pull_request:
jobs:
android-test:
# At this moment in time, the emulator runner
# does not work on macos-14: https://github.com/ReactiveCircus/android-emulator-runner/issues/392#issuecomment-2106167725
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
# Only write to the cache for builds on the 'development' branch
cache-read-only: ${{ github.ref != 'refs/heads/development' }}
- name: Run Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew app:connectedCheck