check-project/ruff
Some checks failed
/ job (push) Failing after 8m43s

This commit is contained in:
Marc Beninca 2024-08-07 23:32:56 +02:00
parent 126eca6feb
commit 700654fadc
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
19 changed files with 22 additions and 0 deletions

View file

@ -44,6 +44,7 @@ def install_commands(path: str) -> None:
for command in [
"browse-workspace",
"build-project",
"check-project",
"synchronize",
]:
log.info(command)

View file

@ -22,6 +22,10 @@ def spcd_build_project() -> None:
pass
def spcd_check_project() -> None:
ps.run("ruff", "check")
def spcd_synchronize(
target: str | None = None, source: str | None = None
) -> None: