Skip to content

feat: support multiple LLM providers (OpenAI, Anthropic, Ollama) #1

feat: support multiple LLM providers (OpenAI, Anthropic, Ollama)

feat: support multiple LLM providers (OpenAI, Anthropic, Ollama) #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e ".[all]"
pip install black mypy pytest
- name: Format check (black)
run: black --check .
- name: Type check (mypy)
run: mypy droidpilot/ tests/ --ignore-missing-imports
- name: Tests
run: pytest tests/ -v