-
-
Notifications
You must be signed in to change notification settings - Fork 89
35 lines (30 loc) · 869 Bytes
/
build.yaml
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
name: Build and check
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Build the app
run: ./gradlew build
android_tests:
# see https://github.com/reactivecircus/android-emulator-runner,
# needs to run on macos as only there virtualization is available!
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Instrumentation Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 26
script: ./gradlew connectedCheck