Skip to content

Commit bfdb309

Browse files
2 parents 4284392 + dda7db3 commit bfdb309

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!-- IF A SECTION IS NOT APPLICABLE TO YOU, PLEASE DELETE IT!! -->
2+
<!-- Your title should be able to summarize what changes you’ve made in one sentence. For example: “Exclude staff from the check for follows”. For stacked PRs, please indicate clearly in the title where in the stack you are. For example: “[Eatery Refactor][4/5] Converted all files to MVP model” -->
3+
## Overview
4+
<!-- Summarize your changes here. -->
5+
## Changes Made
6+
<!-- Include details of what your changes actually are and how it is intended to work. -->
7+
## Test Coverage
8+
<!-- Describe how you tested this feature. Manual testing and/or unit testing. Please include repro steps and/or how to turn the feature on if applicable. -->
9+
## Next Steps (delete if not applicable)
10+
<!-- If this is part of a multi-PR change, please describe what changes you plan on addressing in future PRs. -->
11+
## Related PRs or Issues (delete if not applicable)
12+
<!-- List related PRs against other branches/repositories. -->
13+
## Screenshots (delete if not applicable)
14+
<!-- This could include of screenshots of the new feature / proof that the changes work. -->
15+
<details>
16+
<summary>Screen Shot Name</summary>
17+
<!-- Insert file link here. Newlines above and below your link are necessary for this to work. -->
18+
</details>

.github/workflows/android-lint.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Android Lint
2+
run-name: Running Android Lint
3+
4+
on:
5+
push:
6+
branches:
7+
- 'main'
8+
pull_request:
9+
branches:
10+
- 'main'
11+
12+
jobs:
13+
android-lint:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: set up JDK 17
19+
uses: actions/setup-java@v3
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
23+
cache: gradle
24+
25+
- name: Run Lint
26+
run: ./gradlew lint
27+
continue-on-error: false

0 commit comments

Comments
 (0)