Enhance ConvertTo-AIPrompt to support case-insensitive repository and… #212
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
| on: | |
| push: | |
| paths-ignore: | |
| - "README.md" | |
| - "changelog.md" | |
| - ".github/workflows/docs.yml" | |
| - "docs/**" | |
| - "mkdocs.yml" | |
| - "examples/**" | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Continuous Integration | |
| shell: pwsh | |
| run: | | |
| # Install-Module -Name PwshSpectreConsole -Force | |
| cd ./__tests__ | |
| Invoke-Pester -Output Detailed |