Skip to content

feat: 표 및 그래프 그리기 구현 및 LLM 파이프라인 수정 #10

feat: 표 및 그래프 그리기 구현 및 LLM 파이프라인 수정

feat: 표 및 그래프 그리기 구현 및 LLM 파이프라인 수정 #10

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: ruff check .
- name: Test
run: pytest