Skip to content

Trying fix windows workflow error #9

Trying fix windows workflow error

Trying fix windows workflow error #9

name: Run Server on Ubuntu
on: [push, pull_request]
jobs:
run-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run script with 10s timeout
run: |
timeout 10s python3 app.py
shell: bash