Update LiveKit example: fix title casing and upgrade model (#436) #55
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: Test Integration Packages | |
| on: | |
| pull_request: | |
| paths: | |
| - 'integrations/python/**' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'integrations/python/**' | |
| jobs: | |
| detect-changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| packages: ${{ steps.changes.outputs.changes }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: changes | |
| with: | |
| filters: | | |
| autogen: | |
| - 'integrations/python/zep_autogen/**' | |
| crewai: | |
| - 'integrations/python/zep_crewai/**' | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: detect-changes | |
| if: needs.detect-changes.outputs.packages != '[]' | |
| strategy: | |
| matrix: | |
| package: ${{ fromJSON(needs.detect-changes.outputs.packages) }} | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test integration package | |
| uses: ./.github/actions/test-integration | |
| with: | |
| package: ${{ matrix.package }} | |
| python-version: ${{ matrix.python-version }} |