rename voice_assistant.state to agent.state (#772) #8
This file contains 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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
workflow_dispatch: | |
jobs: | |
tests: | |
if: > # don't run tests for PRs on forks | |
${{ | |
!github.event.pull_request || | |
github.event.pull_request.head.repo.full_name == github.repository | |
}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-14-large | |
platform: macos | |
- os: macos-14 | |
platform: macos | |
- os: windows-2019 | |
platform: windows | |
- os: ubuntu-20.04 | |
platform: linux | |
- os: namespace-profile-default-arm64 | |
platform: linux | |
runs-on: ${{ matrix.os }} | |
name: Run tests (${{ matrix.os }}) | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
lfs: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install ffmpeg (Linux) | |
if: ${{ matrix.platform == 'linux' }} | |
run: sudo apt-get update && sudo apt-get install -y ffmpeg | |
# Azure plugin fails with OpenSSL3, and Ubuntu 22.04 does not include libssl1.1 in its repos | |
- name: Install libssl 1.1 (Linux 22.04) | |
if: ${{ matrix.os == 'namespace-profile-default-arm64' }} | |
run: | | |
wget https://old-releases.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1_arm64.deb | |
wget https://old-releases.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_1.1.1-1ubuntu2.1_arm64.deb | |
sudo dpkg -i libssl1.1_1.1.1-1ubuntu2.1_arm64.deb | |
sudo dpkg -i libssl-dev_1.1.1-1ubuntu2.1_arm64.deb | |
- name: Install ffmpeg (macOS) | |
if: ${{ matrix.platform == 'macos' }} | |
run: brew update && brew install ffmpeg | |
- name: Install ffmpeg (Windows) | |
if: ${{ matrix.platform == 'windows' }} | |
run: choco install ffmpeg | |
- name: Install packages | |
shell: bash | |
run: | | |
pip3 install pytest pytest-asyncio pytest-timeout './livekit-agents[codecs]' psutil | |
pip3 install -r ./tests/test-requirements.txt | |
pip3 install ./livekit-agents \ | |
./livekit-plugins/livekit-plugins-openai \ | |
./livekit-plugins/livekit-plugins-deepgram \ | |
./livekit-plugins/livekit-plugins-google \ | |
./livekit-plugins/livekit-plugins-nltk \ | |
./livekit-plugins/livekit-plugins-silero \ | |
./livekit-plugins/livekit-plugins-elevenlabs \ | |
./livekit-plugins/livekit-plugins-cartesia \ | |
./livekit-plugins/livekit-plugins-azure \ | |
./livekit-plugins/livekit-plugins-anthropic | |
- name: Run tests | |
shell: bash | |
env: | |
LIVEKIT_URL: ${{ secrets.LIVEKIT_URL }} | |
LIVEKIT_API_KEY: ${{ secrets.LIVEKIT_API_KEY }} | |
LIVEKIT_API_SECRET: ${{ secrets.LIVEKIT_API_SECRET }} | |
DEEPGRAM_API_KEY: ${{ secrets.DEEPGRAM_API_KEY }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
ELEVEN_API_KEY: ${{ secrets.ELEVEN_API_KEY }} | |
CARTESIA_API_KEY: ${{ secrets.CARTESIA_API_KEY }} | |
AZURE_SPEECH_KEY: ${{ secrets.AZURE_SPEECH_KEY }} | |
AZURE_SPEECH_REGION: ${{ secrets.AZURE_SPEECH_REGION }} # nit: doesn't have to be secret | |
GOOGLE_CREDENTIALS_JSON: ${{ secrets.GOOGLE_CREDENTIALS_JSON }} | |
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
GOOGLE_APPLICATION_CREDENTIALS: google.json | |
run: | | |
echo $GOOGLE_CREDENTIALS_JSON > google.json | |
pytest --asyncio-mode=auto --timeout=60 . |