-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'multi_module' into renovate-scheduling_fix
- Loading branch information
Showing
3 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
## :loudspeaker: Type of change | ||
<!--- Put an `x` in the boxes that apply, remove checkboxes from remaining --> | ||
|
||
- [ ] Bugfix | ||
- [ ] New feature | ||
- [ ] Enhancement | ||
- [ ] Refactoring | ||
|
||
## :scroll: Description | ||
<!--- Describe your changes in detail --> | ||
|
||
## :bulb: Motivation and Context | ||
<!--- Why is this change required? What problem does it solve? --> | ||
<!--- If it fixes an open issue, please link to the issue here. --> | ||
|
||
## :green_heart: How did you test it? | ||
<!--- Describe how the changes were tested --> | ||
|
||
## :pencil: Checklist | ||
<!--- Put an `x` in the boxes that apply, remove checkboxes from remaining --> | ||
|
||
- [ ] I reviewed submitted code | ||
- [ ] I added tests to verify changes | ||
- [ ] All tests passing | ||
- [ ] All linters passing | ||
- [ ] There are no code climate issues | ||
|
||
## :crystal_ball: Next steps | ||
<!--- Describe any changes that need to be made after merging this PR --> | ||
<!--- Describe any changes that you would like to make after merging this PR --> | ||
|
||
## :camera_flash: Screenshots / GIFs | ||
<!--- Mandatory for UI changes --> | ||
<!-- Uncomment the next line and replace it with links to your screenshots. --> | ||
<!-- | ||
<img src="https://placekitten.com/260/260" width="260">  | ||
<img src="https://placekitten.com/300/300" width="260">  | ||
→ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Android CI | ||
|
||
on: | ||
push: | ||
branches: [ "multi_module" ] | ||
pull_request: | ||
branches: [ "multi_module" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build with Gradle | ||
run: ./gradlew build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters