Skip to content

Commit

Permalink
Revert "docs: readme update"
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali authored Jan 4, 2025
1 parent 876e30f commit 1c92a6a
Show file tree
Hide file tree
Showing 7 changed files with 148 additions and 460 deletions.
12 changes: 4 additions & 8 deletions .github/PULL_REQUEST_TEMPLATE.md
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.
31 changes: 31 additions & 0 deletions .github/workflows/android.yml
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
134 changes: 0 additions & 134 deletions CODE_OF_CONDUCT.md

This file was deleted.

Loading

0 comments on commit 1c92a6a

Please sign in to comment.