Skip to content

Add CI

Add CI #1

Workflow file for this run

name: Android CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repo
uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Test and Build
run: ./gradlew build