Skip to content

Update to newer version of openai and use openai for tts (#52) #362

Update to newer version of openai and use openai for tts (#52)

Update to newer version of openai and use openai for tts (#52) #362

Workflow file for this run

name: Lint and run Python tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Lint with ruff
run: |
ruff .
- name: Test with pytest
run: |
python -m pytest