Skip to content

updated readme

updated readme #3

name: PowerShell Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install Pester
shell: pwsh
run: |
Install-Module -Name Pester -Force -SkipPublisherCheck
- name: Run Tests
shell: pwsh
run: |
$config = New-PesterConfiguration
$config.Run.Path = "Tests"
$config.Output.Verbosity = "Detailed"
Invoke-Pester -Configuration $config