Update .forgejo/workflows/test.yml
All checks were successful
Test web app / Test server with Hypercorn (ASGI) (push) Successful in 1m43s
Test web app / Test server with Gunicorn (WSGI) (push) Successful in 1m41s
Test web app / Test server with Flask Dev Mode (push) Successful in 1m46s

This commit is contained in:
Nova Cat 2025-01-19 12:33:11 -08:00
parent 25b6af7e4a
commit c2cc97f0f5

View file

@ -3,12 +3,12 @@ on: [push,workflow_dispatch]
jobs:
flask:
name: Test server with Flask Dev Mode
runs-on: alpine
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: apk update && apk add py3-flask py3-openssl curl wget
run: apt update && apt install python3-pip curl wget -y && pip install --break-system-packages flask pyOpenSSL
- name: Run server
run: python3 server.py > log.log &
- name: Test server homepage