Skip to content

Commit 9166d01

Browse files
authored
Merge pull request #22 from djpugh/fix/manual-release
2 parents e98f8b7 + 7d9bce0 commit 9166d01

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pipeline.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
name: Pipeline
33

44
on:
5+
workflow_dispatch:
56
push:
67
branches-ignore:
78
- gh-pages
89
tags-ignore:
910
- docs-*
1011
pull_request:
1112
release:
12-
types: [published]
13+
types: [published, edited]
1314

1415
jobs:
1516
lint:

tests/testapp/server.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,5 @@ async def test(request):
5959
auth_provider.configure_app(app)
6060

6161

62-
6362
if __name__ == "__main__":
64-
uvicorn.run(app, host='0.0.0.0', debug=True, port=8000, log_level='debug')
63+
uvicorn.run('server:app', host='0.0.0.0', debug=True, port=8000, log_level='debug', reload=True)

0 commit comments

Comments
 (0)