Better UX for interactive model #51
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: Python CI | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' # Specify your Python version, like '3.9' | |
- name: Install dependencies | |
working-directory: python/ | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install .[dev] | |
- name: Check formatting | |
working-directory: python/ | |
run: | | |
invoke check | |
- name: Run tests | |
working-directory: python/ | |
env: | |
PYTHONPATH: "${{ github.workspace }}/python/src" | |
run: | | |
pytest | |
- name: Check build | |
working-directory: python/ | |
env: | |
PYTHONPATH: "${{ github.workspace }}/python/src" | |
run: | | |
pip install twine | |
python setup.py sdist bdist_wheel | |
twine check dist/* | |
- name: Run the binary | |
working-directory: python/ | |
env: | |
PYTHONPATH: "${{ github.workspace }}/python/src" | |
run: | | |
metaprompt |