empty screen fixed in individual collection sheet #770
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: Android Client CI | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Cache dependencies | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.OS }}-gradle-cache-${{ hashFiles('**/build.gradle') }} | |
# Set up JDK 1.8 | |
- name: set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
# Build with Gradle | |
- name: Build with Gradle | |
run: chmod +x gradlew && ./gradlew build check | |
# Upload Build Reports | |
- name: Upload Reports | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: reports | |
# File path describing what artifact to upload | |
path: mifosng-android/build/reports/** | |
# Upload APK | |
- name: Upload APK | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: android-client | |
# File path describing what artifact to upload | |
path: mifosng-android/build/outputs/apk/debug/mifosng-android-debug.apk |