Add known-safe finding downgrades #6
Workflow file for this run
This file contains hidden or 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 Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| repository-tests: | |
| name: repository-tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Run Pester tests | |
| shell: pwsh | |
| run: | | |
| Install-Module Pester -MinimumVersion 5.0 -Force -Scope CurrentUser | |
| Invoke-Pester -Path ./tests -Output Detailed |