Create android.yml

This commit is contained in:
Emux 2021-06-23 18:39:44 +03:00 committed by GitHub
parent 425e5dac61
commit 156fda15cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,25 @@
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 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build