v / .github / PULL_REQUEST_TEMPLATE
34 lines · 22 sloc · 717 bytes · 7a16a72cc5f9216e09cfec73af99d235b35204cc
Raw
1
2<!--
3
4Please title your PR as follows: `module: description` (e.g. `time: fix date format`).
5Always start with the thing you are fixing, then describe the fix.
6Don't use past tense (e.g. "fixed foo bar").
7
8Explain what your PR does and why.
9
10If you are adding a new function, please document it and add tests:
11
12```
13// foo does foo and bar
14fn foo() {
15
16// file_test.v
17fn test_foo() {
18 assert foo() == ...
19 ...
20}
21```
22
23If you are fixing a bug, please add a test that covers it.
24
25Before submitting a PR, please run `v test-all` .
26See also `TESTS.md`.
27
28I try to process PRs as soon as possible. They should be handled within 24 hours.
29
30Applying labels to PRs is not needed.
31
32Thanks a lot for your contribution!
33
34-->
35