-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (48 loc) · 1.37 KB
/
main.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: Continuous integration
on: [push, pull_request]
jobs:
test:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Run unit tests
run: ./gradlew test
- name: Android Test Report
uses: asadmansr/[email protected]
#### These tests can not run because the api and another app needs to be installed
# androidTest:
# name: Instrumented Tests
# runs-on: macOS-latest
# steps:
# - uses: actions/checkout@v2
# with:
# submodules: 'recursive'
# - name: Set up JDK 1.8
# uses: actions/setup-java@v1
# with:
# java-version: 1.8
# - name: Make gradlew executable
# run: chmod +x ./gradlew
# - name: Run Instrumented Tests
# uses: reactivecircus/android-emulator-runner@v1
# with:
# api-level: 29
# arch: x86
# disable-animations: true
# script: ./gradlew connectedAndroidTest --stacktrace
apk:
name: Build APK
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build debug APK
run: ./gradlew assembleDebug