Skip to content

Add chat completions client #81

Add chat completions client

Add chat completions client #81

Workflow file for this run

name: Serdio CI
on:
push:
branches: [ main ]
paths:
- 'serdio/**'
pull_request:
branches: [ main ]
paths:
- 'serdio/**'
jobs:
serdio-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: 'pip'
- name: Install serdio + dev dependencies.
run: pip install -r serdio/requirements.txt -r requirements/dev.txt
- name: Install serdio package.
run: pip install ./serdio
- name: Lint check the serdio package.
run: flake8 serdio
- name: Test serdio.
run: pytest serdio