ci: Update pyproject.toml to include ruff

This commit is contained in:
2026-06-29 15:09:59 +05:30
parent bcf99c66cd
commit fa48a39277
3 changed files with 9 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ jobs:
python-version: "3.14"
- name: Run Ruff Check
run: uv run ruff check .
run: uv run --group dev ruff check .
- name: Run Ruff Format Check
run: uv run ruff format --check .
run: uv run --group dev ruff format --check .

2
.gitignore vendored
View File

@@ -6,6 +6,8 @@ dist/
wheels/
*.egg-info
.env
# Virtual environments
.venv

View File

@@ -22,3 +22,8 @@ dependencies = [
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"ruff>=0.15.20",
]