Skip to content

empty screen fixed in individual collection sheet #770

empty screen fixed in individual collection sheet

empty screen fixed in individual collection sheet #770

Workflow file for this run

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