guide/src/contributing/pr-checklist.md
When creating a PR, there are a few things you can do to help the process of landing your changes go smoothly:
cargo fmt --all (I forget all the time)! This step ensures there is a consistent style
across nannou's codebase.cargo run --bin run_all_examples. This executes a script that builds and runs
all the examples in the project. You need to do a manual check to see
if examples have failed to run successfully (e.g. check for wgpu validation errors).guide/src/changelog.md.If you forget one of these steps before making your PR, don't panic! The nannou repo has a CI (continuous integration) bot that will check for some of these steps and notify you if anything is out of order. Once the bot checks pass, a community member will review the rest.