We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e6bc8 commit 7d467e7Copy full SHA for 7d467e7
1 file changed
scripts/run_quickstart_flow.py
@@ -0,0 +1,17 @@
1
+from __future__ import annotations
2
+
3
+import json
4
+from pathlib import Path
5
6
+from ix_style.verification import QuickstartRunner
7
8
9
+def main() -> int:
10
+ output_root = Path("artifacts") / "quickstart_review_packages"
11
+ summary = QuickstartRunner().run(output_root)
12
+ print(json.dumps(summary.as_dict(), indent=2))
13
+ return 0 if summary.overall_passed else 1
14
15
16
+if __name__ == "__main__":
17
+ raise SystemExit(main())
0 commit comments