Add feedback API #449
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run prompttools tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flake8 pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
if [ -f test/requirements.txt ]; then pip install -r test/requirements.txt; fi | |
- name: Lint with flake8 | |
run: | | |
# exit-zero treats all errors as warnings. The GitHub editor is 120 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=120 --statistics | |
- name: Build prompttools | |
run: | | |
pip3 install . | |
- name: Test with pytest | |
run: | | |
pytest -v test | |
- name: Run examples | |
run: | | |
DEBUG=1 python examples/prompttests/test_openai_chat.py |