Signed-off-by: chenw <29137819+qfwc258@users.noreply.github.com>
pull/616/head
chenw 4 months ago committed by GitHub
parent 171a41bf1c
commit 280303cbda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 26
      .github/workflows/android.yml

@ -0,0 +1,26 @@
name: Android CI
on:
push:
branches: [ "fongmi" ]
pull_request:
branches: [ "fongmi" ]
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
Loading…
Cancel
Save