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
8 changes: 8 additions & 0 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,17 @@ jobs:
uses: actions/checkout@v4
- name: Lint
uses: astral-sh/ruff-action@v3
with:
# Pin the ruff version so CI matches what contributors resolve
# locally. ruff-action defaults to the latest release, which drifts
# (e.g. 0.16.0 enabled stricter rules that flag pre-existing code)
# and turns green PRs red without any code change. Bump this
# deliberately alongside any lint fixes.
version: "0.15.12"
- name: Format
uses: astral-sh/ruff-action@v3
with:
version: "0.15.12"
args: "format --check"
ty:
name: Ty
Expand Down
Loading