Create android.yml

This commit is contained in:
2023-09-26 17:44:06 +01:00
committed by GitHub
parent bee6c5eaa5
commit c7528e7b4a

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

@@ -0,0 +1,26 @@
name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build