You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DEVELOPMENT.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,3 +111,15 @@ Validate the setup by executing the following tasks from the task palette (F1):
111
111
1.`Tasks: Run Test Task`
112
112
113
113
Validate that debugging works by opening `crates/tick/examples/basic.rs` and pressing the `Debug` link that appears above `main()`. This should successfully launch the example app under the debugger.
114
+
115
+
# Before submitting a pull request
116
+
117
+
Run all essential CI checks locally with a single command:
118
+
119
+
```sh
120
+
just check-changes
121
+
```
122
+
123
+
This runs build, tests, clippy, formatting, and other validations in sequence—inspect the `justfile` for the full list of checks. Some checks (e.g., mutation testing) take too long to run locally; review the GitHub pipeline results to address those.
124
+
125
+
PR titles must follow [Conventional Commits](https://www.conventionalcommits.org/) format (e.g., `feat: add validation method`, `fix: resolve memory leak`).
0 commit comments