Skip to content

chore: clean up logging stack stace #632

chore: clean up logging stack stace

chore: clean up logging stack stace #632

name: android-unit-test
on:
push:
branches: [ develop ]
pull_request:
branches:
- '*'
jobs:
android-unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'zulu'
- name: Configure properties
run: bash .github/scripts/setup-config.sh
- name: Test with Gradle
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'