Create android.yml

This commit is contained in:
hierarchy-orbit 2021-04-02 00:24:19 +08:00 committed by GitHub
parent f2e301ca1a
commit 52cd9e331a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

23
.github/workflows/android.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
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: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build