Skip to content

CLI interface updates (#183) #156

CLI interface updates (#183)

CLI interface updates (#183) #156

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: "3.10"
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: install project
run: uv sync --all-extras --dev
- name: pytest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: uv run pytest --durations=0