Add instrumented tests #44
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
name: Code analysis and tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 55 | |
# | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# | |
# - name: Validate Gradle Wrapper | |
# uses: gradle/actions/wrapper-validation@v3 | |
# | |
# - name: Copy CI gradle.properties | |
# run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
# | |
# - name: Set up JDK 17 | |
# uses: actions/setup-java@v4 | |
# with: | |
# java-version: '17' | |
# distribution: 'liberica' | |
# | |
# - name: Setup Gradle | |
# uses: gradle/actions/setup-gradle@v3 | |
# | |
# - name: Run static analysis | |
# run: ./gradlew ktlint detekt sample-hilt:lintDebug sample-koin:lintDebug | |
# | |
# - name: Run unit tests | |
# run: ./gradlew testDebugUnitTest | |
# | |
# - name: Upload lint reports | |
# if: always() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: lint-reports | |
# path: '**/build/reports/lint-results-*.xml' | |
# | |
# - name: Upload ktlint reports | |
# if: always() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: ktlint-reports | |
# path: '**/build/reports/ktlint-report.xml' | |
# | |
# - name: Upload detekt reports | |
# if: always() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: detekt-reports | |
# path: '**/build/reports/detekt-report.xml' | |
# | |
# - name: Upload test results | |
# if: always() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: test-results | |
# path: '**/build/test-results/test*UnitTest/**.xml' | |
androidTest: | |
# needs: build | |
runs-on: macOS-latest # enables hardware acceleration in the virtual machine | |
timeout-minutes: 55 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'liberica' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Accept Android licenses | |
run: yes | "$ANDROID_HOME"/cmdline-tools/latest/bin/sdkmanager --licenses || true | |
- name: Run instrumented tests with GMD | |
run: > | |
./gradlew cleanManagedDevices --unused-only && | |
./gradlew instrumented-tests:pixel2api30DebugAndroidTest | |
-Dorg.gradle.workers.max=1 | |
-Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" | |
-Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true | |
--info | |
- name: Upload test reports | |
if: success() || failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-reports | |
path: '**/build/reports/androidTests' |