-
Notifications
You must be signed in to change notification settings - Fork 14
55 lines (50 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
name: Android CI
on: [push, pull_request]
jobs:
check_commit_hooks:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Run pre-commit check
uses: pre-commit/[email protected]
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Build with Gradle
run: ./gradlew build
- name: Publish test report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: app/build/test-results/testDebugUnitTest/TEST-*.xml
check_name: JUnit Test Report
- name: Check notice file
run: ./gradlew checkUpdatedLicenseFile
- name: Archive debug apk
uses: actions/upload-artifact@v3
with:
name: debug-apk
path: app/build/outputs/apk/debug/app-debug.apk
- name: Archive reports
uses: actions/upload-artifact@v3
with:
name: reports
path: |
app/build/reports/licenses/*.html
app/build/reports/*.html