Skip to content

fix(team): 에이전트 tools 제약 제거 (구조화 출력 가능) #18

fix(team): 에이전트 tools 제약 제거 (구조화 출력 가능)

fix(team): 에이전트 tools 제약 제거 (구조화 출력 가능) #18

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
name: Lint & Test (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check .
- name: Test (pytest)
run: pytest -q
env:
NUTTI_DRY_RUN: "true"