Create android_build.yml

This commit is contained in:
jmir1 2021-04-18 04:19:08 +02:00 committed by GitHub
parent e26f204298
commit cebced50c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/android_build.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Android CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
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