ci: add pre-commit and tests workflows
Some checks failed
checks / pre-commit (push) Successful in 2m2s
checks / tests-10 (push) Failing after 1m23s
checks / tests-11 (push) Failing after 1m37s
checks / tests-12 (push) Failing after 1m17s

This commit is contained in:
cătălin 2024-08-04 11:11:21 +02:00
commit 6dee4300a0
No known key found for this signature in database
5 changed files with 260 additions and 177 deletions

View file

@ -5,7 +5,7 @@ authors = [
requires-python = ">=3.10"
dependencies = [
"typer>=0.12",
"rich>=13.3.3",
"rich>=13.3",
"pydantic>=2.7",
"pyyaml>=6.0",
"pyrage>=1.1",
@ -13,7 +13,7 @@ dependencies = [
"httpx>=0.27",
"platformdirs>=4.2",
"pydantic-settings>=2.0",
"hishel>=0.0.26",
"hishel>=0.0",
]
name = "halig"
dynamic = ["version"]
@ -90,7 +90,7 @@ reportMissingTypeStubs = false
reportAttributeAccessIssue = false
[tool.ruff.lint]
extend-select = ["W", "C90", "I", "N", "UP", "S", "BLE", "B", "A", "COM", "C4", "DTZ", "T10", "EM", "ISC", "T20", "PT", "RSE", "RET", "SIM", "PTH", "ERA", "PGH", "PL", "TRY", "RUF"]
extend-select = ["W", "C90", "I", "N", "UP", "S", "BLE", "B", "A", "COM", "C4", "DTZ", "T10", "EM", "ISC", "T20", "PT", "RSE", "RET", "SIM", "PTH", "ERA", "PGH", "PL", "TRY", "RUF", "FURB", "PERF"]
extend-ignore = ["S101", "ISC002", "COM812", "ISC001"]
[tool.mypy]