chore: enforce warnings, ASCII, and worker teardown in the verify lane #10
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: Windows verification | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| powershell-51: | |
| runs-on: windows-2025 | |
| timeout-minutes: 20 | |
| defaults: | |
| run: | |
| shell: powershell | |
| steps: | |
| - name: Check out source | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install pinned verification tools | |
| run: | | |
| [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
| Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | |
| Install-Module Pester -RequiredVersion 5.9.0 -Scope CurrentUser -Force -SkipPublisherCheck | |
| Install-Module PSScriptAnalyzer -RequiredVersion 1.25.0 -Scope CurrentUser -Force | |
| - name: Run deterministic verification | |
| run: .\tools\verify.ps1 | |