Skip to content

update server api to work with chatbotui #26

update server api to work with chatbotui

update server api to work with chatbotui #26

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9"]
runs-on: ${{ matrix.platform }}
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: |
python -m pip install ".[dev]" --upgrade
- name: Test with pytest
run: |
python -bb -m pytest --cov-config setup.cfg test -s -n auto