Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## 🗒️ Description / Motivation
<!-- Brief description of the changes introduced by this PR and why they are needed. -->

## What Changed
<!-- List the files touched and a brief summary of each change. -->

## Correctness / Behavior Guarantees
<!-- Any invariants preserved or broken by this change. Default is N/A. -->

## Tests Added / Run
<!-- Describe the tests added or run to validate the changes. -->

## 🔗 Related Issues or PRs
<!-- Reference any related issues using the GitHub issue number (e.g., Closes #123). Default is N/A. -->

## ✅ Checklist
<!-- Please check off all required items. For those that don't apply remove them accordingly. -->

- [ ] 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.