Skip to content

Bump gunicorn from 21.2.0 to 22.0.0 in /server #23

Bump gunicorn from 21.2.0 to 22.0.0 in /server

Bump gunicorn from 21.2.0 to 22.0.0 in /server #23

Workflow file for this run

name: Server Tests
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
test-flask-server:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python tests.py