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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,12 @@ make setup
45
45
```
46
46
This will set up an example module for testing.
47
47
48
+
#### Install Dependencies
49
+
```bash
50
+
make depend
51
+
```
52
+
This installs any required modules defined in `PSDepend.psd1`. If your changes add a new module dependency, make sure it is listed in both `PSDepend.psd1` and in `RequiredModules` in the module manifest.
53
+
48
54
#### Build the Module
49
55
```bash
50
56
make build
@@ -61,6 +67,7 @@ All tests should pass before submitting your pull request.
61
67
62
68
-**If you modify Pester tests**: Create example functions and ensure to reference GitHub Actions runs on your forked repository
63
69
-**If you modify scripts or workflows**: Verify that the associated pipelines run correctly in your fork
70
+
-**If you add dependencies**: Ensure they are declared in both `PSDepend.psd1` and `RequiredModules` in the module manifest
0 commit comments