Files
NNNet/.github/workflows/android.yml
dom4k 842bfb4c9d
Some checks failed
Android CI / build (push) Has been cancelled
Add build automation and CI publishing workflow
2026-03-16 19:04:20 +00:00

27 lines
504 B
YAML

name: Android CI
on:
push:
branches: ["master", "main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- name: Set up Android SDK
uses: android-actions/setup-android@v3
- name: Build debug APK
working-directory: android
run: ./gradlew assembleDebug --no-daemon