-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!-- | ||
* Keep your PR:s small and focused. | ||
* The PR title is what ends up in the changelog, so make it descriptive! | ||
* If applicable, add a screenshot or gif. | ||
* If it is a non-trivial addition, consider adding a demo for it to `egui_demo_lib`, or a new example. | ||
* Do NOT open PR:s from your `master` branch, as that makes it hard for maintainers to test and add commits to your PR. | ||
* Remember to run `cargo fmt` and `cargo clippy`. | ||
* Open the PR as a draft until you have self-reviewed it and run `./scripts/check.sh`. | ||
* When you have addressed a PR comment, mark it as resolved. | ||
Please be patient! The PR will be reviewed when someone has time. If you haven't heard anything in a week, feel free to ping the PR. | ||
--> | ||
|
||
- Closes <https://github.com/ItsEthra/egui-notify/issues/THE_RELEVANT_ISSUE> | ||
- [ ] I have followed the instructions in the PR template | ||
- [ ] I have run `cargo fmt` and `cargo clippy` | ||
- [ ] I ran `./scripts/check.sh` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
# This scripts runs various CI-like checks in a convenient way. | ||
|
||
set -eu | ||
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) | ||
cd "$script_path/.." | ||
set -x | ||
|
||
cargo install --quiet typos-cli | ||
|
||
export RUSTDOCFLAGS="-D warnings" | ||
|
||
typos | ||
cargo fmt --all -- --check | ||
cargo clippy --quiet --all-features -- -D warnings | ||
cargo check --quiet --all-targets | ||
cargo test --quiet --all-targets | ||
cargo test --quiet --doc | ||
|
||
echo "All checks passed." |