Only build and run one of the gen1/gen2 windows VHDs on PR build #11897
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Powershell Unit Test | |
on: pull_request | |
jobs: | |
pester-test: | |
name: Pester test | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Perform a Pester test from the parts/windows/*.tests.ps1 file | |
shell: powershell | |
run: | | |
Invoke-Pester parts/windows/*.tests.ps1 -Passthru | |
- name: Perform a Pester test from the staging/cse/windows/*.tests.ps1 file | |
shell: powershell | |
run: | | |
Install-Module -Name powershell-yaml -Force | |
Invoke-Pester staging/cse/windows/*.tests.ps1 -Passthru |