Skip to content

Commit

Permalink
Add build APK action to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Drjacky committed Aug 23, 2020
1 parent 5d182be commit 0ce38b0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Android CI
on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set Gradle as executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug

0 comments on commit 0ce38b0

Please sign in to comment.