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
**Working on your first Pull Request?** You can learn how from this *free* series [How to Contribute to an Open Source Project on GitHub](https://kcd.im/pull-request)
8
+
9
+
## Code style
10
+
11
+
Before any commits, please use below tools to format and check code style:
12
+
13
+
```bash
14
+
cibuild/run cibuild/format
15
+
cibuild/run cibuild/lint
16
+
```
17
+
18
+
Commit message style should follow below format:
19
+
20
+
```
21
+
[Module] Do something great.
22
+
```
23
+
24
+
`Module` could be `CI`, `IO` or other well-known abbreviations.
25
+
26
+
## Package building
27
+
28
+
Build code with default developer docker:
29
+
30
+
```bash
31
+
cibuild/run make -j8
32
+
```
33
+
34
+
## Unit tests
35
+
36
+
Test your commit in local node:
37
+
38
+
```bash
39
+
cibuild/run make test
40
+
```
41
+
42
+
Also, CI builds would be triggered if a commit is pushed.
0 commit comments