Skip to content

Refactor ChatGPT functions and bump to openai-python 1.43.1 #49

Refactor ChatGPT functions and bump to openai-python 1.43.1

Refactor ChatGPT functions and bump to openai-python 1.43.1 #49

Workflow file for this run

name: check
env:
INSTAGRAM_USERNAME: ${{ secrets.INSTAGRAM_USERNAME }}
INSTAGRAM_SESSION: ${{ secrets.INSTAGRAM_SESSION_JSON }}
on:
push:
branches:
- main
- master
pull_request:
jobs:
test:
name: test with ${{ matrix.py }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
py:
- "3.12"
# - "3.11"
#- "3.10"
os:
- ubuntu-latest
#- macos-latest
#- windows-latest
steps:
- uses: actions/checkout@v3
with:
lfs: 'true'
fetch-depth: 0
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
- name: Install tox
run: python -m pip install tox-gh>=1.3
- name: Setup test suite
run: tox -vv --notest
- name: Run test suite
run: tox --skip-pkg-install