diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..08b9e3f --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,25 @@ +## 🗒️ Description / Motivation + + +## What Changed + + +## Correctness / Behavior Guarantees + + +## Tests Added / Run + + +## 🔗 Related Issues or PRs + + +## ✅ Checklist + + +- [ ] Ran local quality checks to avoid unnecessary CI fails: + ```console + cargo fmt -- --check + cargo clippy --workspace --lib --examples --tests --benches --all-features -- -D warnings + cargo test + ``` +- [ ] Considered adding appropriate tests for the changes.