Skip to content

Commit 3a28fd0

Browse files
authoredJun 5, 2020
Added link to CI pipeline starter
1 parent 9cb2c0a commit 3a28fd0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ A starter kit for new PowerShell script modules.
33

44
This repository demonstrates how to organize a module and accomplish a few common tasks like public vs private functions, unit tests, working with classes, and more.
55

6+
Tip: For a starter that contains Azure DevOps CI pipeline support, check out [PowerShellCiPipelineStarterKit](https://github.com/keithbabinec/PowerShellCiPipelineStarterKit).
7+
68
## Features
79
* Public and private functions.
810
* Unit testing with the Pester framework.
@@ -16,7 +18,7 @@ This repository demonstrates how to organize a module and accomplish a few commo
1618
2. Open PowerShell (as an administrator).
1719
3. Install the [Pester](https://github.com/pester/Pester) framework:
1820
``` powershell
19-
Install-Module -Name Pester -MinimumVersion 4.6.0 -Scope AllUsers -Force -SkipPublisherCheck
21+
Install-Module -Name Pester -MinimumVersion 4.10.1 -Scope AllUsers -Force -SkipPublisherCheck
2022
```
2123
4. Add this starter kit module to the PSModule path.
2224
***Note: This assumes you have cloned the repository to C:\Source. Update the path if this isn't correct.***
@@ -38,4 +40,4 @@ Import-Module -Name SampleModule
3840
``` powershell
3941
cd 'C:\Source\PowerShellModuleStarterKit\SampleModule'
4042
Invoke-Pester
41-
```
43+
```

0 commit comments

Comments
 (0)