2025-01-18 18:49:10 -08:00
|
|
|
name: Test web app
|
|
|
|
on: [push,workflow_dispatch]
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
2025-01-18 18:50:40 -08:00
|
|
|
run: apt update && apt install python3-pip -y && pip install --break-system-packages flask hypercorn pyOpenSSL
|