cmbagent / .github /workflows /tests.yml
JFrazUCSF's picture
Upload 176 files
ea8c770 verified
name: tests
on:
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout cmbagent_v2 branch
uses: actions/checkout@v4
with:
ref: cmbagent_v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install
run: |
python -m pip install -U pip
pip install -e .
pip install pytest
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
pytest -s