Skip to content

Fix checkin request #311

Fix checkin request

Fix checkin request #311

Workflow file for this run

name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- name: Required files
run: echo $GOOGLE_SERVICES_JSON > app/google-services.json
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GoogleServicesJson }}
- name: Checkout submodule
run: git submodule update --init --recursive
- name: Unit Test
run: ./gradlew testDebugUnitTest
continue-on-error: true # Allow steps to continue even with test failures
- name: Publish test result
uses: actions/upload-artifact@v4
with:
name: TestResults
path: app/build/reports/tests/testDebugUnitTest/