-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build.gradle updated for new CI CONTRIBUTING.md added README.md updated
- Loading branch information
1 parent
3a87ca8
commit 3405883
Showing
8 changed files
with
92 additions
and
23 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,23 @@ | ||
# Contributing Code or Documentation Guide | ||
|
||
## Running Tests | ||
|
||
The new code should contain tests that check new behavior. | ||
|
||
Run tests `./gradlew test` to check that code works as behavior. | ||
|
||
## Code Style | ||
|
||
The code base should remain clean, following industry best practices for organization, javadoc and style, as much as possible. | ||
|
||
To run the Code Style check use `./gradlew spotlessCheck`. | ||
|
||
If check found any errors, you can apply Code Style by running `./gradlew spotlessApply` | ||
|
||
## Creating a pull request | ||
|
||
Once you are satisfied with your changes: | ||
|
||
- Commit changes to the local branch you created. | ||
- Push that branch with changes to the corresponding remote branch on GitHub | ||
- Submit a [pull request](https://help.github.com/articles/creating-a-pull-request) to `dev` branch. |
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
This file was deleted.
Oops, something went wrong.
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
Binary file not shown.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
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