Skip to content

Commit

Permalink
🎉 adds README.md docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MamboBryan committed Mar 15, 2024
1 parent ffb5fca commit bd9b2cd
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 0 deletions.
Binary file added .github/images/template-android.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
### Type
- [ ] Feature
- [ ] Bug
- [ ] Enhancement
- [ ] Chore

### Status
- [ ] Work In Progress
- [ ] Completed
- [ ] In Review

### Checks
- [ ] I have run `./gradlew build` or build and it passed successfully
- [ ] I have run `./gradlew check` or tests and all have passed successfully
- [ ] I have tested the app on a physical device and it works as intended

### Previous Behaviour
> what is the current behaviour of what was being worked on
None

### Current Behaviour
> what is the current behaviour of what was being worked on
None

### Intended Behaviour
> what is the intended behaviour of what was being worked on
None

### Closes Issues
> issue number of what was being worked on (__if necessary__)
None

[//]: # (`fixes #1` or `closes #1`)

### Notes
> additional information of what was being worked on (__if necessary__)
None

### Screenshot
> an image of what was being worked on (__if necessary__)
None
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Gradle project
on: push
jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v2
- name: Create local.properties file
run: |
touch local.properties
echo "add things you want in your local file here"
- name: TODO to Issue
uses: alstr/[email protected]
id: todo
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew build
32 changes: 32 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Gradle project

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v2
- name: Create local.properties file
run: |
touch local.properties
echo "add things you want here"
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew build
- name: Run tests with Gradle Wrapper
run: ./gradlew check
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<p align="center"><img width=100% src="/.github/images/template-android.png" alt="Ding Logo"></p>

# Template (Android)
This is a simple android template

0 comments on commit bd9b2cd

Please sign in to comment.