This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Java Android Application | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
distribution: 'oracle' | |
java-version: '17' | |
- name: Grant execute permission to gradlew | |
run: chmod +x gradlew | |
- name: Run Test | |
run: ./gradlew test | |
- name: Create APK | |
run: ./gradlew assembleDebug |