Skip to content

refacotr: 요구사항 상태 reason_codes 변수명 및 비교 로직 개선 #21

refacotr: 요구사항 상태 reason_codes 변수명 및 비교 로직 개선

refacotr: 요구사항 상태 reason_codes 변수명 및 비교 로직 개선 #21

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test-and-lint:
name: Tests + Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest ruff
- name: Lint (ruff)
run: ruff check src tests
- name: Test (pytest)
run: pytest -q
- name: Eval smoke (v0)
run: python scripts/run_eval_v0.py --suite smoke