-
Notifications
You must be signed in to change notification settings - Fork 12
44 lines (40 loc) · 1.11 KB
/
android.yml
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
40
41
42
43
44
name: Android CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Tests & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0
with:
validate-wrappers: true
gradle-home-cache-cleanup: true
- run: ./gradlew assembleDebug test lint --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk
- name: Upload UnitTest reports
uses: actions/upload-artifact@v4
with:
name: unit-tests-reports
path: |
**/reports/tests/test*UnitTest/
**/build/test-results/Test-*.xml
- name: Upload Lint reports
uses: actions/upload-artifact@v4
with:
name: lint-reports
path: |
**/reports/lint-results-*.xml
**/reports/lint-results-*.html