Files
workflowbumptester/hello.py
2025-05-29 12:31:06 +02:00

13 lines
309 B
Python

def main():
print("Hello from workflowbumptester!")
print(f"This script has version {get_version()}.")
def get_version():
with open(".version") as f:
return f.read().strip()
print("Done")
if __name__ == "__main__":
main()
print("This script has been executed successfully.")