Publish ITWorx Pulse source
Public source validation / validate (push) Failing after 3m8s

This commit is contained in:
ITWorx Pulse release export
2026-09-03 02:09:19 +02:00
commit bd774932d5
614 changed files with 77116 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
.PHONY: validate state next sync test-harness contracts docs checksums wiring bootstrap build test lint verify
validate:
python tools/projectctl.py validate
state:
python tools/projectctl.py summary
next:
python tools/projectctl.py next
sync:
python tools/projectctl.py sync-md
test-harness:
python -m unittest discover -s tools/tests -p "test_*.py" -v
contracts:
python tools/validate_contracts.py
docs:
python tools/check_docs.py
checksums:
python tools/generate_checksums.py
wiring:
python tools/check_wiring.py
bootstrap:
pwsh -NoProfile -File scripts/bootstrap.ps1
build:
pwsh -NoProfile -File scripts/build.ps1
test:
pwsh -NoProfile -File scripts/test.ps1
lint:
pwsh -NoProfile -File scripts/lint.ps1
verify:
pwsh -NoProfile -File scripts/verify.ps1