Update .forgejo/workflows/test.yml
Some checks failed
Create Docker image (unstable) / deploy (push) Has been cancelled
Test web app / Check syntax (push) Has been cancelled
Test web app / Test server with Flask Dev Mode (push) Has been cancelled
Test web app / Test server with Hypercorn (ASGI) (push) Has been cancelled
Test web app / Test server with Gunicorn (WSGI) (push) Has been cancelled
Some checks failed
Create Docker image (unstable) / deploy (push) Has been cancelled
Test web app / Check syntax (push) Has been cancelled
Test web app / Test server with Flask Dev Mode (push) Has been cancelled
Test web app / Test server with Hypercorn (ASGI) (push) Has been cancelled
Test web app / Test server with Gunicorn (WSGI) (push) Has been cancelled
This commit is contained in:
parent
a96054d3a5
commit
c92321640b
1 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ jobs:
|
|||
steps:
|
||||
- uses: https://git.swee.codes/swee/setup-alpine@main
|
||||
with:
|
||||
additional: py3-flask py3-openssl curl wget
|
||||
additional: py3-flask py3-openssl curl wget py3-asgiref
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run server
|
||||
run: python3 server.py > log.log &
|
||||
|
@ -41,7 +41,7 @@ jobs:
|
|||
steps:
|
||||
- uses: https://git.swee.codes/swee/setup-alpine@main
|
||||
with:
|
||||
additional: py3-flask py3-openssl py3-pip curl wget
|
||||
additional: py3-flask py3-openssl py3-pip curl wget py3-asgiref
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Hypercorn
|
||||
run: pip install --break-system-packages hypercorn
|
||||
|
@ -66,7 +66,7 @@ jobs:
|
|||
steps:
|
||||
- uses: https://git.swee.codes/swee/setup-alpine@main
|
||||
with:
|
||||
additional: py3-flask py3-openssl py3-gunicorn curl wget
|
||||
additional: py3-flask py3-openssl py3-gunicorn curl wget py3-asgiref
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run server
|
||||
run: gunicorn -w 4 -b 127.0.0.1:1234 'server:app' > log.log &
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue