-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from Sachinbisht27/feature/adding-pre-commit
Fixed code standared violation fixes
- Loading branch information
Showing
7 changed files
with
107 additions
and
21 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!-- Pull Request Title Guidelines --> | ||
<!-- | ||
Please follow the format: #<issue_id> <Title> | ||
- <issue_id>: Id of the issue for which the PR belongs to (e.g., #1023) | ||
- <Title>: A brief summary of the change (e.g., Add user authentication functionality) | ||
Example of Pull Request Title: #1023 Add user authentication functionality | ||
--> | ||
|
||
#[ISSUE_ID] | ||
<!--- If there is an open issue, please link to the issue here by replacing [ISSUE_ID]--> | ||
<!-- Make sure the PR is against the `develop` branch --> | ||
|
||
### Please complete the following steps and check these boxes before filing your PR: | ||
|
||
|
||
### Types of changes | ||
<!--- What types of changes does your code introduce? --> | ||
- [ ] Bug fix (a change which fixes an issue) | ||
- [ ] New feature (a change which adds functionality) | ||
|
||
|
||
### Short description of what this resolves: | ||
<!--- Describe your changes in detail --> | ||
<!--- Why these change required? What problem does it solve? --> | ||
|
||
|
||
### Checklist: | ||
<!--- Mark the checkboxes accordingly. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] I have performed a self-review of my own code. | ||
- [ ] The code follows the style guidelines of this project. | ||
- [ ] The code changes are passing the CI checks | ||
- [ ] I have documented my code wherever required. | ||
- [ ] The changes requires a change to the documentation. | ||
- [ ] I have updated the documentation based on the my changes. | ||
- [ ] I have added tests to cover my changes (if not applicable, please state why) | ||
- [ ] All new and existing tests are passing. |
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,15 @@ | ||
name: pre-commit | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: pre-commit/[email protected] |
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
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