Use PSRun's SelectorOption consistently in nested menus #91
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: Pester Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
windows-latest: | |
name: Windows Latest | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.200' | |
- name: Build | |
shell: pwsh | |
run: | | |
& ./Build.ps1 Release | |
- name: Run tests on pwsh | |
shell: pwsh | |
run: | | |
& ./tests/RunPesterTests.ps1 | |
macos-latest: | |
name: macOS Latest | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.200' | |
- name: Build | |
shell: pwsh | |
run: | | |
& ./Build.ps1 Release | |
- name: Run tests | |
shell: pwsh | |
run: | | |
& ./tests/RunPesterTests.ps1 | |
ubuntu-latest: | |
name: Ubuntu Latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.200' | |
- name: Build | |
shell: pwsh | |
run: | | |
& ./Build.ps1 Release | |
- name: Run tests | |
shell: pwsh | |
run: | | |
& ./tests/RunPesterTests.ps1 |