-
Notifications
You must be signed in to change notification settings - Fork 96
43 lines (38 loc) · 983 Bytes
/
android-develop.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 Pull Request & Develop CI
on:
pull_request:
branches:
- 'develop'
push:
branches:
- 'develop'
jobs:
test:
name: Run Unit Tests And Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Unit tests
run: ./gradlew test --stacktrace
- name: Build with Gradle
run: ./gradlew assembleDebug
# apk:
# name: Generate APK
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v1
# - name: set up JDK 1.8
# uses: actions/setup-java@v1
# with:
# java-version: 1.8
# - name: Build debug APK
# run: bash ./gradlew assembleDebug --stacktrace
# - name: Upload APK
# uses: actions/upload-artifact@v1
# with:
# name: app
# path: app/build/outputs/apk/debug/app-debug.apk