-
Notifications
You must be signed in to change notification settings - Fork 22
43 lines (41 loc) · 1.27 KB
/
android-unit-test.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
name: Android Unit Test
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: zulu
cache: gradle
- name: Generate secret.properties
env:
PUSH_TO_FCM_AUTH: ${{ secrets.PUSH_TO_FCM_AUTH }}
PUSH_TO_FCM_PUBLIC_KEY: ${{ secrets.PUSH_TO_FCM_PUBLIC_KEY }}
PUSH_TO_FCM_SERVER_BASE_URL: ${{ secrets.PUSH_TO_FCM_SERVER_BASE_URL }}
run: |
echo "push_to_fcm.server_base_url=${PUSH_TO_FCM_SERVER_BASE_URL}" >> ./secret.properties
echo "push_to_fcm.public_key=${PUSH_TO_FCM_PUBLIC_KEY}" >> ./secret.properties
echo "push_to_fcm.auth=${PUSH_TO_FCM_AUTH}" >> ./secret.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run unit-test
run: ./gradlew lint testDebug --continue
- name: Build with Gradle
run: ./gradlew assembleRelease
- uses: actions/upload-artifact@v3
with:
name: outputs
path: app/build/outputs/