创建 android.yml

This commit is contained in:
陈生杂物房
2024-08-20 18:08:58 +08:00
committed by GitHub
parent 4e9ff71c44
commit 42326f10a5

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@v4
- name: set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build