Skip to content

Merge pull request #288 from joshprk/chat-parsing #284

Merge pull request #288 from joshprk/chat-parsing

Merge pull request #288 from joshprk/chat-parsing #284

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- 'main'
types: [opened, reopened, synchronize]
jobs:
run-pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest -v tests