Skip to content

Bug fixes and verbosity (#7) #31

Bug fixes and verbosity (#7)

Bug fixes and verbosity (#7) #31

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-tests:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Cache PowerShell modules
id: cache-psmodules
uses: potatoqualitee/[email protected]
with:
modules-to-cache: PSOpenAI
- name: Run tests
shell: pwsh
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
# $testResult = Invoke-Pester -Path "./tests/PSHelp.Copilot.Tests.ps1" -PassThru
if ($testResult.FailedCount -gt 0) {
throw "$($testResult.FailedCount) tests failed."
}