Skip to content

Update LiveKit example: fix title casing and upgrade model (#436) #55

Update LiveKit example: fix title casing and upgrade model (#436)

Update LiveKit example: fix title casing and upgrade model (#436) #55

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 }}