PeopleInSpace/.github/workflows/android.yml

26 lines
571 B
YAML

name: Android CI
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build android app
run: ./gradlew assembleDebug
- name: Run Unit Tests
run: ./gradlew test
- name: Build web app
run: ./gradlew :web:assemble
- name: Build iOS shared code
run: ./gradlew :common:compileKotlinIOS
- name: Build macOS shared code
run: ./gradlew :common:compileKotlinMacOS