-
Notifications
You must be signed in to change notification settings - Fork 19
52 lines (44 loc) · 1.61 KB
/
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
44
45
46
47
48
49
50
51
52
name: unit-test
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
name: Perform Unit Testing
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
cache: 'gradle'
- name: Load Google Service file
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA | base64 -di > app/google-services.json
- name: Setup Local properties
env:
STORE_FILE: ${{ secrets.STORE_FILE }}
IR_STORE_FILE: ${{ secrets.IR_STORE_FILE }}
run: mkdir keys &&
echo $STORE_FILE | base64 -di > keys/store_key.jks &&
echo $IR_STORE_FILE | base64 -di > keys/ir_store_key.jks &&
echo $'STORE_FILE=${{ github.workspace }}/keys/store_key.jks\n
STORE_PASSWORD=${{ secrets.STORE_PASSWORD }}\n
KEY_ALIAS=${{ secrets.KEY_ALIAS }}\n
KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}\n
IR_STORE_FILE=${{ github.workspace }}/keys/ir_store_key.jks\n
IR_STORE_PASSWORD=${{ secrets.IR_STORE_PASSWORD }}\n
IR_KEY_ALIAS=${{ secrets.IR_KEY_ALIAS }}\n
IR_KEY_PASSWORD=${{ secrets.IR_KEY_PASSWORD }}\n' > ./local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run unit tests
run: ./gradlew testDebug