diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..d1f5f1d --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,35 @@ +## I'm submitting a... + +- [ ] bug report; +- [ ] feature request; +- [ ] documentation change; + +## What is the expected behaviour? + + +## What is the current behaviour? + + +## Possible solution (optional) + + + + +A possible solution could be... + +## Steps to reproduce (for bugs) + + +1.   +2.   +3.   + +### Python version + + +Python 3.10.6 x64 + +### Mypy version + + +mypy 0.991 (compiled: yes) \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..da17065 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,30 @@ +# Description + + +## Motivation and Context + + +## Related Issue + + + +PR fixes the following issue: + +## Type of change + +- [ ] Bug fix (non-breaking change which fixes an issue); +- [ ] New feature (non-breaking change which adds functionality); +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected); +- [ ] This change requires a documentation update; + +# Checklist: + +- [ ] My code follows the style guidelines of this project; +- [ ] I have performed a self-review of my code; +- [ ] I have commented my code, particularly in hard-to-understand areas; +- [ ] I have made corresponding changes to the documentation; +- [ ] My changes generate no new warnings; +- [ ] I have added tests that prove my fix is effective or that my feature works; +- [ ] New and existing unit tests pass locally with my changes; +- [ ] Mypy does not return any errors or warnings if runned on the root package; +- [ ] I have updated the library version and updated the CHANGELOG; \ No newline at end of file