Skip to content

🔧 Optimise the voice stream configuration #50

🔧 Optimise the voice stream configuration

🔧 Optimise the voice stream configuration #50

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install ask
run: pip install -e .
- name: install python dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Test
run: pytest