Add new tasks to .github/PULL_REQUEST_TEMPLATE.md.

This commit is contained in:
Davide Casale
2024-02-27 22:06:47 +01:00
parent ababa73488
commit 4f0f5efe09
2 changed files with 11 additions and 10 deletions

View File

@@ -20,9 +20,9 @@ A possible solution could be...
## Steps to reproduce (for bugs) ## Steps to reproduce (for bugs)
<!-- You can delete this section if you are not submitting a bug report --> <!-- You can delete this section if you are not submitting a bug report -->
1. &nbsp; 1.
2. &nbsp; 2.
3. &nbsp; 3.
### Python version ### Python version
<!-- Indicate your python version here --> <!-- Indicate your python version here -->

View File

@@ -20,10 +20,11 @@ PR fixes the following issue:
# Checklist: # Checklist:
- [ ] My code follows the style guidelines of this project; - [ ] I've done a self-review of my code;
- [ ] I have performed a self-review of my code; - [ ] I've made corresponding changes to the documentation;
- [ ] I have commented my code, particularly in hard-to-understand areas; - [ ] I've made sure my changes generate no warnings;
- [ ] I have made corresponding changes to the documentation; - [ ] mypy returns no errors when run on the root package;
- [ ] My changes generate no new warnings; <!-- If you use pre-commit hooks you can always check the following tasks -->
- [ ] Mypy returns no errors or warnings when run on the root package; - [ ] I've run black to format my code;
- [ ] Pylint returns a score of 10.00/10.00 when run on the root package; - [ ] I've run isort to format my code's import statements;
- [ ] flake8 reports no errors when run on the entire code base;