Create android.yml

This commit is contained in:
Josia Pietsch 2024-11-11 19:01:43 +01:00 committed by GitHub
parent f61f861950
commit e0ce54bef1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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

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