Skip to content

fix(deps): update io.insert-koin to v4 #2565

fix(deps): update io.insert-koin to v4

fix(deps): update io.insert-koin to v4 #2565

name: android-unit-test
on: [push]
jobs:
android-unit-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Increase swapfile
run: |
chmod +x .github/scripts/action-swap-increase.sh
bash .github/scripts/action-swap-increase.sh
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
# cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Configure properties
run: |
bash .github/scripts/staging-config.sh
- name: Post setup clean up
run: |
bash .github/scripts/cleanup-temp-directory.sh
- name: Check Disk Space
run: df -h
- name: Gradle test
run: ./gradlew test --stacktrace
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/**/TEST-*.xml'