File tree Expand file tree Collapse file tree 4 files changed +108
-0
lines changed
Expand file tree Collapse file tree 4 files changed +108
-0
lines changed Original file line number Diff line number Diff line change 1+ # These are supported funding model platforms
2+
3+ github : nsh07
4+ patreon : # Replace with a single Patreon username
5+ open_collective : # Replace with a single Open Collective username
6+ ko_fi : # Replace with a single Ko-fi username
7+ tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+ community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+ liberapay : # Replace with a single Liberapay username
10+ issuehunt : # Replace with a single IssueHunt username
11+ lfx_crowdfunding : # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+ polar : # Replace with a single Polar username
13+ buy_me_a_coffee : nsh07
14+ thanks_dev : # Replace with a single thanks.dev username
15+ custom : # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug report
3+ about : Create a report of a bug or crash
4+ title : " [BUG] <enter your title here>"
5+ labels : bug, needs-triage
6+ assignees : nsh07
7+
8+ ---
9+
10+ ** Describe the bug**
11+ A clear and concise description of what the bug is.
12+
13+ ** To Reproduce**
14+ Steps to reproduce the behavior:
15+
16+ 1 . Go to '...'
17+ 2 . Click on '....'
18+ 3 . Scroll down to '....'
19+ 4 . See error
20+
21+ ** Expected behavior**
22+ A clear and concise description of what you expected to happen.
23+
24+ ** Screenshots**
25+ If applicable, add screenshots to help explain your problem.
26+
27+ ** Device (please complete the following information):**
28+
29+ - Device model: [ e.g. Google Pixel 10]
30+ - Android version: [ e.g. Android 16]
31+ - App version: [ e.g. v1.4.3]
32+ - Installed from: [ e.g. Play Store]
33+
34+ ** Additional context**
35+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ ---
2+ name : Feature request
3+ about : Suggest a new feature
4+ title : " [FEATURE] <enter your title here>"
5+ labels : enhancement, needs-triage
6+ assignees : nsh07
7+
8+ ---
9+
10+ ** Is your feature request related to a problem? Please describe.**
11+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12+
13+ ** Describe the solution you'd like**
14+ A clear and concise description of what you want to happen.
15+
16+ ** Describe alternatives you've considered**
17+ A clear and concise description of any alternative solutions or features you've considered.
18+
19+ ** Additional context**
20+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change 1+ name : Android CI
2+
3+ on :
4+ push :
5+ branches :
6+ - ' main'
7+ - ' dev'
8+
9+ pull_request :
10+ types : [ opened, synchronize, reopened ]
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v6
18+ - name : Set up JDK 21
19+ uses : actions/setup-java@v5
20+ with :
21+ java-version : ' 21'
22+ distribution : ' temurin'
23+ cache : gradle
24+
25+ - name : Grant execute permission for gradlew
26+ run : chmod +x gradlew
27+
28+ - name : Build debug APK with Gradle
29+ run : ./gradlew assembleDebug
30+
31+ - name : Run tests
32+ run : ./gradlew testDebugUnitTest
33+
34+ - name : Upload debug APK artifact
35+ uses : actions/upload-artifact@v7
36+ with :
37+ name : simplygraph-debug
38+ path : ./app/build/outputs/apk/debug/app-debug.apk
You can’t perform that action at this time.
0 commit comments