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: CONTRIBUTING.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,34 @@ Here's a list of types that we use:
38
38
| chore | Other changes that don't modify src or test files |
39
39
| revert | Reverts a previous commit |
40
40
41
+
### Local Testing
42
+
43
+
We you recommend to do local testing on your changes before pushing.
44
+
45
+
You need first to validate your modules:
46
+
47
+
```shell
48
+
make validate-modules
49
+
```
50
+
51
+
Then, lint check:
52
+
53
+
```shell
54
+
make lint
55
+
```
56
+
57
+
For unit tests:
58
+
59
+
```shell
60
+
make test-unit
61
+
```
62
+
63
+
And for E2E test:
64
+
65
+
```shell
66
+
make e2e
67
+
```
68
+
41
69
### Further Information
42
70
43
71
*[Contributor License Agreement](https://git.k8s.io/community/CLA.md) Kubernetes projects require that you sign a Contributor License Agreement (CLA) before we can accept your pull requests
0 commit comments