diff --git a/entrypoint.py b/entrypoint.py index c9223fd..72e3163 100755 --- a/entrypoint.py +++ b/entrypoint.py @@ -9,11 +9,13 @@ # Github specific setup is done here to make it easy to test the action code # in isolation. + def interpret_env(env_var): if isinstance(env_var, str): return env_var.lower() not in ["false", "no", "off" "0"] return bool(env_var) + if __name__ == "__main__": print("[sphinx-action] Starting sphinx-action build.")