v2.0.0-beta1 #4
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: | |
| - master | |
| - dev | |
| pull_request: | |
| branches: | |
| - master | |
| - dev | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Pester Tests - ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| defaults: | |
| run: | |
| shell: pwsh | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up PowerShell Gallery | |
| run: | | |
| Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | |
| - name: Install Pester | |
| run: | | |
| Install-Module -Name Pester -MinimumVersion 5.0.0 -Repository PSGallery -Force -AllowClobber -Scope CurrentUser | |
| - name: Install PScribo | |
| run: | | |
| Install-Module -Name PScribo -MinimumVersion 0.11.1 -Repository PSGallery -Force -AllowClobber -Scope CurrentUser | |
| - name: Install PSScriptAnalyzer | |
| run: | | |
| Install-Module -Name PSScriptAnalyzer -MinimumVersion 1.0.0 -Repository PSGallery -Force -AllowClobber -Scope CurrentUser | |
| - name: Install AsBuiltReport.Core | |
| run: | | |
| Install-Module -Name AsBuiltReport.Core -MinimumVersion 1.6.2 -Repository PSGallery -Force -AllowClobber -Scope CurrentUser | |
| - name: Run Pester Tests | |
| run: | | |
| $CodeCoverageParam = @{} | |
| $OutputFormatParam = @{ OutputFormat = 'NUnitXml' } | |
| # Only enable code coverage for Windows | |
| if ('${{ matrix.os }}' -eq 'windows-latest') { | |
| $CodeCoverageParam = @{ CodeCoverage = $true } | |
| } | |
| .\Tests\Invoke-Tests.ps1 @CodeCoverageParam @OutputFormatParam | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-${{ matrix.os }} | |
| path: Tests/testResults.xml | |
| retention-days: 30 | |
| - name: Upload code coverage to Codecov | |
| if: matrix.os == 'windows-latest' | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./Tests/coverage.xml | |
| flags: unit | |
| name: codecov-${{ matrix.os }} | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: false |