-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
148 additions
and
460 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
Fixes - [Jira-#Issue_Number](https://mifosforge.jira.com/browse/MIFOSAC-) | ||
|
||
Didn't create a Jira ticket, click [here](https://mifosforge.jira.com/jira/software/c/projects/MIFOSAC/issues/) to create new. | ||
Fixes #Issue_Number | ||
|
||
Please Add Screenshots If there are any UI changes. | ||
|
||
| Before | After | | ||
|--------------------------------------------|----------------------------------------| | ||
| | | | ||
|
||
Please make sure these boxes are checked before submitting your pull request - thanks! | ||
|
||
- [ ] Run the static analysis check `./gradlew check` or `ci-prepush.sh` to make sure you didn't break anything | ||
- [ ] Apply the `MifosStyle.xml` style template to your code in Android Studio. | ||
|
||
- [ ] Run the unit tests with `./gradlew check` to make sure you didn't break anything | ||
|
||
- [ ] If you have multiple commits please combine them into one commit by squashing them. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Android Client CI | ||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
# Build with Gradle | ||
- name: Build with Gradle | ||
run: chmod +x gradlew && ./gradlew assembleDebug | ||
|
||
# Upload APK | ||
- name: Upload APK | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# Artifact name | ||
name: android-client-app | ||
# File path describing what artifact to upload | ||
path: mifosng-android/build/outputs/apk/debug/mifosng-android-debug.apk |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.