PR template: ask for fn docs and tests

pull/805/head
Alexander Medvednikov 2019-06-29 16:50:13 +02:00 committed by GitHub
parent 4b3b69ab15
commit 0bb3acef87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,19 @@ Don't use past tense (e.g. "fixed foo bar").
Explain what your PR does and why.
If you are adding a new function, please document it and add tests:
```
// foo does foo and bar
fn foo() {
// file_test.v
fn test_foo() {
assert foo() == ...
...
}
```
Before submitting a PR, please run the tests with `make test`, and make sure V can still compile itself. Run this twice:
./v -o v