fix(deps): update kotlin monorepo to v2.1.0 #2555
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: 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' |