a0c8464e58
Build Package / build (ubuntu-latest) (push) Failing after 1s
CodeQL / Analyze (python) (push) Failing after 1s
Core Typecheck / core-typecheck (push) Failing after 1s
Linting / lint (push) Failing after 1s
llama-dev tests / test-llama-dev (push) Failing after 1s
Publish Sub-Package to PyPI if Needed / publish_subpackage_if_needed (push) Has been skipped
Sync Docs to Developer Hub / sync-docs (push) Failing after 0s
Build Package / build (windows-latest) (push) Has been cancelled
16 lines
313 B
Python
16 lines
313 B
Python
import click
|
|
|
|
from .changelog import changelog
|
|
from .check import check
|
|
from .prepare import prepare
|
|
|
|
|
|
@click.group(short_help="Utilities for the release process in the monorepo")
|
|
def release():
|
|
pass # pragma: no cover
|
|
|
|
|
|
release.add_command(check)
|
|
release.add_command(changelog)
|
|
release.add_command(prepare)
|