feat(tago_transit): 전국 대중교통 통합 읽기 서비스 (버스·철도·고속/시외) (#23) #86
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: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install deps | |
| run: uv sync --extra dev | |
| - name: Lint | |
| run: uv run ruff check . | |
| - name: Test | |
| run: uv run pytest -q | |
| - name: Catalog & changelog drift | |
| run: | | |
| uv run arcsolve-mcp catalog | |
| uv run arcsolve-mcp changelog | |
| git diff --exit-code docs/services.md CHANGELOG.md |