Aggregated stats: start of the week uses regional preferences (Androi… #4979
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/[email protected] | |
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 | |