Skip to content

Commit 1c92a6a

Browse files
authored
Revert "docs: readme update"
1 parent 876e30f commit 1c92a6a

File tree

7 files changed

+148
-460
lines changed

7 files changed

+148
-460
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
Fixes - [Jira-#Issue_Number](https://mifosforge.jira.com/browse/MIFOSAC-)
2-
3-
Didn't create a Jira ticket, click [here](https://mifosforge.jira.com/jira/software/c/projects/MIFOSAC/issues/) to create new.
1+
Fixes #Issue_Number
42

53
Please Add Screenshots If there are any UI changes.
64

7-
| Before | After |
8-
|--------------------------------------------|----------------------------------------|
9-
| | |
10-
115
Please make sure these boxes are checked before submitting your pull request - thanks!
126

13-
- [ ] Run the static analysis check `./gradlew check` or `ci-prepush.sh` to make sure you didn't break anything
7+
- [ ] Apply the `MifosStyle.xml` style template to your code in Android Studio.
8+
9+
- [ ] Run the unit tests with `./gradlew check` to make sure you didn't break anything
1410

1511
- [ ] If you have multiple commits please combine them into one commit by squashing them.

.github/workflows/android.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Android Client CI
2+
on:
3+
push:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
# Set up JDK 17
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v1
17+
with:
18+
java-version: 17
19+
20+
# Build with Gradle
21+
- name: Build with Gradle
22+
run: chmod +x gradlew && ./gradlew assembleDebug
23+
24+
# Upload APK
25+
- name: Upload APK
26+
uses: actions/upload-artifact@v4
27+
with:
28+
# Artifact name
29+
name: android-client-app
30+
# File path describing what artifact to upload
31+
path: mifosng-android/build/outputs/apk/debug/mifosng-android-debug.apk

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 134 deletions
This file was deleted.

0 commit comments

Comments
 (0)