Skip to content

Bump flask from 3.0.3 to 3.1.0 #31

Bump flask from 3.0.3 to 3.1.0

Bump flask from 3.0.3 to 3.1.0 #31

Workflow file for this run

name: Python check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Run server
run: |
timeout 15 python3 -m flask run --port 50505 || exit $(( $? == 124 ? 0 : $? ))