Aggregated stats: start of the week uses regional preferences (Android14+). #4977
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
#https://github.com/marketplace/actions/android-emulator-runner | |
name: Test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
timeout-minutes: 45 | |
runs-on: macos-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: run tests | |
uses: reactivecircus/android-emulator-runner@v2.32.0 | |
with: | |
arch: x86_64 | |
api-level: 34 | |
script: ./gradlew connectedCheck | |
- name: Archive | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: build/reports/androidTests/ | |
retention-days: 7 | |