feat: LLM 기반 온톨로지 자동 구축 — 검색 최적화 메타데이터 생성 #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --extra dev --extra sqlite | |
| - name: Ruff check | |
| run: uv run ruff check | |
| - name: Ruff format | |
| run: uv run ruff format --check | |
| - name: Pyright | |
| run: uv run pyright | |
| - name: Tests | |
| run: uv run pytest -v |