fix: 优化cic流程,升级版本为v1.0.3

This commit is contained in:
2026-05-01 10:46:08 +08:00
parent 34f3921df1
commit 5cf01e7143
40 changed files with 94 additions and 19 deletions

View File

@@ -1,10 +1,10 @@
from fastapi import FastAPI
app = FastAPI(title="CI/CD Demo", version="1.0.0")
app = FastAPI(title="CI/CD Demo", version="1.0.3")
@app.get("/")
def root():
return {"status": "ok", "version": "1.0.2"}
return {"status": "ok", "version": "1.0.3"}
@app.get("/health")
def health():