-
Notifications
You must be signed in to change notification settings - Fork 7
53 lines (43 loc) · 1.36 KB
/
PR.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
name: Android PR CI
on:
pull_request:
paths-ignore:
- '**.md'
- 'media/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: set up JDK 17
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/[email protected]
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug testDebugUnitTest jvmTest
- name: Verify database migration
run: chmod +x ./scripts/sqldelight/verifyDatabaseMigration && ./scripts/sqldelight/verifyDatabaseMigration
- name: Upload the test report
if: failure()
uses: actions/[email protected]
with:
name: TestReport
path: |
feature-monster-compendium/build/reports/tests
data/build/reports/tests
domain/build/reports/tests
- name: Upload an APK
uses: actions/[email protected]
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk
- name: Upload an APK metadata JSON
uses: actions/[email protected]
with:
name: output-metadata.json
path: app/build/outputs/apk/debug/output-metadata.json