Skip to content

Add CI

Add CI #5

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 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
- name: Test and Build
run: ./gradlew build