ci: pin ruff to pyproject.toml dev version - #252
Merged
Conversation
Adds a documentation lint job to CI that calls the reusable workflow at cubrid-lab/.github/.github/workflows/doc-lint.yml@main. Checks: - markdownlint-cli2 (markdown style) - lychee (internal link checker) - scan_mermaid.py (mermaid syntax validation) Advisory mode initially (fail-on-issue: false). Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Same fix as pycubrid: 'pip install ruff' installs latest ruff which introduces new lint rules not yet adopted. Install from .[dev] extras to match the pinned ruff==0.15.21 in pyproject.toml.
yeongseon
pushed a commit
that referenced
this pull request
Aug 6, 2026
…tags - CHANGELOG: [Unreleased] → [1.6.0] → [1.5.1] → [1.5.0] (was misordered) - Add #252 CI ruff pin note under [1.6.0] - Stale tags v2.1.0/v2.1.1 deleted (orphaned, 152 commits behind main)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The lint job used
pip install ruff(unpinned), which installs the latest ruff version. When ruff 0.16.x introduced new rules, every PR started failing lint with pre-existing code style issues. This PR installs ruff from the project's.[dev]extras so the version matchespyproject.toml's pin (ruff==0.15.21).Same fix applied to pycubrid.
Verification
CI will verify — the lint job should now pass with the pinned ruff version.