Skip to content

Remove Should -InvokeVerifiable #15

Remove Should -InvokeVerifiable

Remove Should -InvokeVerifiable #15

Workflow file for this run

name: Run Unit Tests
on:
push:
permissions:
contents: write
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
if: github.repository_owner != 'ShaunLawrie' || !(github.ref == 'refs/heads/main' && github.ref == 'refs/heads/prerelease')
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Unit Test
shell: pwsh
run: |
$ErrorActionPreference = "Stop"
& .\PwshSpectreConsole\Build.ps1
$env:PSModulePath = @($env:PSModulePath, ".\PwshSpectreConsole\") -join ":"
$PSVersionTable | Out-Host
Get-Module Pester -ListAvailable | Out-Host
Invoke-Pester -CI -ExcludeTag "ExcludeCI"