From 3d8c54b220c22f6daa303a347616f0284341963e Mon Sep 17 00:00:00 2001 From: user622628252416 <76960354+user622628252416@users.noreply.github.com> Date: Sun, 24 Nov 2024 14:33:26 +0100 Subject: [PATCH] add checkboxes for unit tests to pr template (#335) Co-authored-by: user622628252416 --- .github/PULL_REQUEST_TEMPLATE.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3297182a..7339ea93 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -9,9 +9,12 @@ ## Checklist Things need to be done before this Pull Request can be merged. - [ ] Code is well-formatted and adheres to project style guidelines: `cargo fmt` -- [ ] Code does not produce any clippy warnings `cargo clippy` +- [ ] Code does not produce any clippy warnings: `cargo clippy` +- [ ] All unit tests pass: `cargo test` +- [ ] I added new unit tests, so other people don't accidentally break my code by changing other parts of the codebase. [How?](https://doc.rust-lang.org/book/ch11-01-writing-tests.html)