Skip to content

[APP-3529] Update README with Chat API how-to #13

[APP-3529] Update README with Chat API how-to

[APP-3529] Update README with Chat API how-to #13

Workflow file for this run

name: Run Tests on PR
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run pytest
run: cd src && streamlit-sal compile && pytest ../tests/ --maxfail=1 --disable-warnings --verbose