Skip to content

feat: example & changes to show autocomplete for st.chat_input #2

feat: example & changes to show autocomplete for st.chat_input

feat: example & changes to show autocomplete for st.chat_input #2

Workflow file for this run

name: Pytest with Playwright
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12]
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 dependencies
run: |
pip install poetry
poetry install
- name: Install Playwright browsers
run: |
poetry run playwright install
- name: Run pytest with Playwright
run: |
poetry run pytest e2e/