-
Notifications
You must be signed in to change notification settings - Fork 1
152 lines (128 loc) · 4.34 KB
/
health-sdk.check.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: Check Health SDK
on:
workflow_dispatch:
pull_request:
types: [opened, edited, reopened, synchronize]
paths:
- 'health-sdk/**'
- 'health-api-library/**'
- 'core-api-library/**'
- 'gradle/**'
workflow_call:
secrets:
GINI_MOBILE_TEST_CLIENT_SECRET:
required: true
HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD:
required: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-check
cancel-in-progress: ${{ !contains(github.ref, 'refs/tags/')}}
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run unit tests
run: ./gradlew health-sdk:sdk:testDebugUnitTest
- name: archive unit test results
if: always()
uses: actions/upload-artifact@v4
with:
name: health-sdk-unit-test-results
path: health-sdk/sdk/build/reports/tests
build-example-app:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: build release example app for QA
run: >
./gradlew health-sdk:example-app:assembleQaRelease
-PclientId="gini-mobile-test"
-PclientSecret="${{ secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}"
-PreleaseKeystoreFile="health_sdk_example.jks"
-PreleaseKeystorePassword='${{ secrets.HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}'
-PreleaseKeyAlias="health_sdk_example"
-PreleaseKeyPassword='${{ secrets.HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}'
- name: archive release example app for QA
uses: actions/upload-artifact@v4
with:
name: health-sdk-example-app-qa-release
path: health-sdk/example-app/build/outputs/apk/qa/release
- name: build release example app for production
run: >
./gradlew health-sdk:example-app:assembleProdRelease
-PclientId="gini-mobile-test"
-PclientSecret="${{ secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}"
-PreleaseKeystoreFile="health_sdk_example.jks"
-PreleaseKeystorePassword='${{ secrets.HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}'
-PreleaseKeyAlias="health_sdk_example"
-PreleaseKeyPassword='${{ secrets.HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}'
- name: archive release example app for production
uses: actions/upload-artifact@v4
with:
name: health-sdk-example-app-prod-release
path: health-sdk/example-app/build/outputs/apk/prod/release
android-lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run android lint
run: ./gradlew health-sdk:sdk:lint
- name: archive android lint report
uses: actions/upload-artifact@v4
with:
name: health-sdk-android-lint-report
path: health-sdk/sdk/build/reports/lint-results*.html
detekt:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run detekt
run: ./gradlew health-sdk:sdk:detekt
- name: archive detekt report
uses: actions/upload-artifact@v4
with:
name: health-sdk-detekt-report
path: health-sdk/sdk/build/reports/detekt/*.html
ktlint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: run ktlint
run: ./gradlew health-sdk:sdk:ktlintCheck
- name: archive ktlint report
uses: actions/upload-artifact@v4
with:
name: health-sdk-ktlint-report
path: health-sdk/sdk/build/reports/ktlint/**/*.html