Changes in the README.md
in Relation to the Deprecation Policy Update OKR
#3
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: Manifest config tests | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'versions-manifest.json' | |
jobs: | |
RunTests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Pester | |
shell: pwsh | |
run: | | |
Install-Module Pester -Force -Scope CurrentUser | |
- name: Run tests | |
shell: pwsh | |
run: | | |
Import-Module Pester | |
Invoke-Pester -Configuration @{ | |
Run = @{ | |
Path = "tests/ManifestConfig.Tests.ps1" | |
Exit = $true | |
} | |
} |