fix: add github workflow

This commit is contained in:
2025-10-07 23:21:35 +02:00
parent d3b3840278
commit f2ac0c9769
25 changed files with 307 additions and 89 deletions
+16
View File
@@ -37,5 +37,21 @@ build-backend = "uv_build"
[dependency-groups]
dev = [
"ipykernel>=6.30.1",
"pyright>=1.1.406",
"pytest>=8.4.2",
"ruff>=0.13.3",
]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
reportMissingImports = "none"
reportMissingModuleSource = "none"
useLibraryCodeForTypes = true
include = ["src"]
[tool.ruff]
# Keep defaults and additionally ignore notebooks
extend-exclude = [
"**/*.ipynb",
]