Enhance YouTubeAssistant module with improved Search-YouTube function, adding parameters for query, max results, ordering, and optional channel info. Update Get-YouTubeTranscript for better error handling and integrate with Invoke-YouTubeAIAssistant for streamlined usage. #218
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 |