fix: fix workflow

This commit is contained in:
IgorVolochay
2025-03-08 21:10:43 +03:00
parent af3424fca8
commit 90939d2634
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
name: app-actions name: app-actions
on: on:
workflow_dispatch:
push: push:
paths: paths:
- '**.py' - '**.py'
@@ -10,7 +11,7 @@ on:
pull_request: pull_request:
branches: branches:
- main - main
workflow_dispatch:
jobs: jobs:
+1 -1
View File
@@ -183,7 +183,7 @@ async def comment(comment_info: AddCommentBody,
async def main(): async def main():
config = uvicorn.Config("main:app", port=5000, log_level="debug") config = uvicorn.Config("main:app", port=5000, log_level="debug",)
server = uvicorn.Server(config) server = uvicorn.Server(config)
await server.serve() await server.serve()