Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ jobs:
fi
echo "CHANGELOG check passed"


doc-lint:
name: Documentation lint
uses: cubrid-lab/.github/.github/workflows/doc-lint.yml@main
with:
exclude: "node_modules/,vendor/"
fail-on-issue: false # advisory mode during initial rollout

# ──────────────────────────────────────────
# Job 1: Lint (fast, no DB needed)
# ──────────────────────────────────────────
Expand All @@ -54,8 +62,8 @@ jobs:
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install ruff
run: pip install ruff
- name: Install pinned ruff from pyproject.toml
run: pip install -e ".[dev]"
- name: Ruff check
run: ruff check sqlalchemy_cubrid/ test/
- name: Ruff format check
Expand Down
Loading