Skip to content

feat: 카카오맵 데이터 구조 변경으로 인한 DB 리팩토링 #101

feat: 카카오맵 데이터 구조 변경으로 인한 DB 리팩토링

feat: 카카오맵 데이터 구조 변경으로 인한 DB 리팩토링 #101

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [ main ]
jobs:
lint:
name: Run Ruff linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
run: uv python install 3.11
- name: Install dependencies
run: uv sync --dev
- name: Run Ruff lint
run: uv run ruff check .
- name: Run Ruff format
run: uv run ruff format --check .
uv-lock-check:
name: Check if uv.lock is up to date
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
run: uv python install 3.11
- name: Check if uv.lock is in sync with pyproject.toml
run: |
uv lock --locked
git diff --exit-code uv.lock