Skip to content

Add workflow to run Android build #1

Add workflow to run Android build

Add workflow to run Android build #1

Workflow file for this run

name: Android Build Test
on: [push, pull_request, workflow_dispatch]
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: 'adopt'
- name: Build with Ant xvfb
uses: GabrielBB/xvfb-action@v1
env:
cikey: ${{ secrets.cikey }}
with:
run: ant -noinput -buildfile build.xml android -Dgradle.params="assemble"