Skip to content

version bump

version bump #58

Workflow file for this run

name: Run prompt tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Setup prompttools
run: |
python setup.py develop
- name: Run tests
run: |
DEBUG=1 python examples/prompttests/example.py