-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (52 loc) · 1.59 KB
/
Build.yaml
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
56
57
58
59
60
61
62
63
64
65
66
name: Build
on:
push:
branches:
- master
pull_request:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Check detekt
run: ./gradlew detekt
- name: Check lint
run: ./gradlew lintDebug
- name: Build all build type and flavor permutations
run: ./gradlew assembleDebug
- name: Run local tests
run: ./gradlew testDebug testDebugUnitTest
# - name: Upload build outputs (APKs)
# uses: actions/upload-artifact@v3
# with:
# name: APKs
# path: '**/build/outputs/apk/**/*.apk'
# - name: Upload lint reports (HTML)
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: lint-reports
# path: '**/build/reports/lint-results-*.html'
# - name: Upload test results (XML)
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: '**/build/test-results/test*UnitTest/**.xml'