Skip to content

Update chatgpt-scraper-lib to improve performance #23

Update chatgpt-scraper-lib to improve performance

Update chatgpt-scraper-lib to improve performance #23

name: Python Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
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: |
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests
run: |
source .venv/bin/activate
poetry run pytest