Jaypore CI

> Jaypore CI: Minimal, Offline, Local CI system.
Log | Files | Refs | README | LICENSE

app.py (222B)


      1 """A tiny demo module for the sub-pipeline example."""
      2 
      3 
      4 def add(a, b):
      5     """Return the sum of *a* and *b*."""
      6     return a + b
      7 
      8 
      9 def greet(name="world"):
     10     """Return a greeting string."""
     11     return f"Hello, {name}!"