-
Notifications
You must be signed in to change notification settings - Fork 7
39 lines (30 loc) · 908 Bytes
/
android.yml
File metadata and controls
39 lines (30 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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: 21
- 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/