Skip to content

Update setup.py

Update setup.py #140

Workflow file for this run

name: Python CI
on: [push, pull_request]
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
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: |
python -m pip install --upgrade pip
pip install pytest coverage
pip install .
- name: Run tests
run: |
coverage run -m pytest
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)