Skip to content

Implement Structured Output for FeasibilityAgent #4

Implement Structured Output for FeasibilityAgent

Implement Structured Output for FeasibilityAgent #4

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Run all tests
run: |
echo "Running unit tests..."
uv run pytest tests/unit/ -v --tb=short
echo "Running integration tests (mocked - no real API calls)..."
uv run pytest tests/integration/ -v --tb=short
- name: Upload coverage reports
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.12'
with:
file: ./coverage.xml
fail_ci_if_error: false