ci: tighten crowdin and i18n PR checks

This commit is contained in:
春河晴
2026-03-13 00:35:11 +09:00
parent 6bac2b9331
commit 4b7ee3923c
6 changed files with 132 additions and 15 deletions

View File

@@ -1,5 +1,15 @@
name: Ruff PR Check
on: [ pull_request ]
on:
pull_request:
paths:
- "*.py"
- "**/*.py"
- "pyproject.toml"
- "ruff.toml"
- ".ruff.toml"
- "setup.cfg"
- "tox.ini"
- ".pre-commit-config.yaml"
jobs:
ruff:
runs-on: ubuntu-24.04
@@ -18,4 +28,3 @@ jobs:
- name: Run Ruff Format Check
run: ruff format --check --diff
shell: pwsh