Update all dependencies (multimodule) #382
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
name: Instrumented tests | |
on: | |
push: | |
branches: [ "base", "multimodule" ] | |
pull_request: | |
branches: [ "base", "multimodule" ] | |
jobs: | |
androidTest: | |
runs-on: macOS-latest # enables hardware acceleration in the virtual machine | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
api-level: [23, 26, 29] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
- name: Run instrumentation tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
arch: x86 | |
disable-animations: true | |
script: ./gradlew connectedCheck --stacktrace | |
- name: Upload test reports | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-reports-${{ matrix.api-level }} | |
path: ./app/build/reports/androidTests |